hi,
i want display two sidebar on my front page, but i want display just 1 sidebar on full post.
can i do that ?
hi,
i want display two sidebar on my front page, but i want display just 1 sidebar on full post.
can i do that ?
Hey,
have a look at this post: http://www.kriesi.at/support/topic/home-with-one-sidebar-others-with-two#post-3658
so if i want on frontpage 2 sidebar and in my post just 1 sidebar, what code i must change ?
i was chnge the php code to if($k_option['includes']['sidebarCount'] != 2 || is_home()) $sidebarSize = ' fullwidth_sidebar';
but on my frontpage show 1 sidebar on full post show 2 sidebar
Set the sidebar option to one sidebar and change the code to:
if($k_option['includes']['sidebarCount'] != 2 || !(is_home())) $sidebarSize = ' fullwidth_sidebar';You must log in to post.