Wordpress Themes - WP Forum at BFA

Wordpress Themes - WP Forum at BFA (http://forum.bytesforall.com/index.php)
-   Sidebars & Widgets (http://forum.bytesforall.com/forumdisplay.php?f=14)
-   -   Disabling sidebar for specific post-page (http://forum.bytesforall.com/showthread.php?t=976)

vi8084 Mar 27, 2009 09:50 AM

Disabling sidebar for specific post-page
 
Thanks so much for your time, Flynn!

Quick question: Can I disable my sidebar for a specific post-page? Or even all the post-pages of a specific category?

In the "sidebar" section of your interface you can disable sidebars for the "category page", but:

"This will turn on/off sidebars on category pages (pages that list the posts in the given category), but not on "all single post pages of posts in category XX". "

I DO need to turn off sidebars on "all single pages of posts in category XX."

Any ideas? Thanks again!

Flynn Mar 27, 2009 06:35 PM

For the right sidebar, change

in header.php
PHP Code:

<?php if ( $right_col == "on" ) { ?>

to
PHP Code:

<?php if ( $right_col == "on" AND !is_single(array(17,'beef-stew','Irish Stew')) AND !( is_single() AND in_category('29'))  ) { ?>

and in footer.php
PHP Code:

<?php if ( $right_col == "on" ) { ?>

to
PHP Code:

<?php if ( $right_col == "on" AND !is_single(array(17,'beef-stew','Irish Stew')) AND !( is_single() AND in_category('29')) ) { ?>

to not display the right sidebar on the single post pages of posts...
  • with the ID 17
  • with the name "beef-stew"
  • with the title "Irish Stew"
  • that are filed under the category with the ID 29

ortixia Mar 10, 2010 04:28 PM

How could you alter this for the left side bar, since there is not left col. or left col 2 in footer.php.
I am having some absolutely crazy results on one of the pages that i want this bar.

ortixia Mar 10, 2010 04:36 PM

I inserted the following code to header.php:
PHP Code:

<?php if ( $bfa_ata['left_col2'] == "on"  AND ( is_single() AND in_category('30'))  ) { ?><col class="colone-inner" /><?php ?>



All times are GMT -6. The time now is 04:46 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.