Hi! How can I remove SIDEBARS from one particular page? I dont have DROP-DOWN menu there. I use this theme: http://newwpthemes.com/wordpress-theme/permanent/ Thanks
what drop-down menu? do you want to completely remove the sidebar or only want to display widget on specific page? For the 1st case you can add this conditional tag to your sidebar.php file <?php if (!is_page( 'page ID or slug or title' )) { ?> ...your sidebar content... <?php } ?> Code (markup): you might want to add another conditional tag to the content area to change it's width and for the 2nd case, you can use this plugin to show widget on specific page wordpress.org/extend/plugins/widget-context
I want to remove Sidebars from one specific page. I´ve tried to use wordpress.org/extend/plugins/widget-context , but it removed widgets, which I didnt want(that was all right!) BUT instead of them new widgets were visible(they werent in Sidebar 1 in admin area)- why were they visible ? Is there any other way how to remove sidebars from one page?