Thomaska
Forum Replies Created
-
Forum: Reviews
In reply to: [Floating Social Bar] Nice but takes timesHello,
I just did a new test.
For the moment, I am using a share this system : no plugin, just core code from share this…
With that system, this page http://www.test-imprimante-3d.fr/test-de-limprimante-orion-delta-83350.html has a 1,58 seconds time to load.
Putting you plugin (easy to use, and nice !), it goes up to 1,83 seconds.
please fin the report http://goo.gl/bcTtu1
For the moment, i’ll just keep my system.
Keep up the good work !
Kind regards,
Thomas Ka
Forum: Plugins
In reply to: CMS – adding sidebar content within postHi,
You could use conditionnal sidebar
http://www.webdesignerwall.com/tutorials/wordpress-theme-hacks/
I use it for my website running under WP : AboveLuxe.fr.
For every category, you have a different sidebar.
Make a category by profil and include a sidebar regarding the category :
<?php $post = $wp_query- >post; if ( in_category('1') ) { include(TEMPLATEPATH . '/single1.php'); } elseif ( in_category('2') ) { include(TEMPLATEPATH . '/single2.php'); } else { include(TEMPLATEPATH . '/single_other.php'); } ? >Forum: Plugins
In reply to: Topic PageHi,
I’m doing exactly the same thing : mixing blog and website for Aboveluxew.
What I did :
I createde a template for a page
<?php
/*
Template Name: HomePageLuxe
*/
?>with code in it calling a specific type of post = that would be a Sub-Home Page with code call post and includes.
K