Archived topic
Disable right sidebar on Home page
3 replies · Started by Damiaan van Vliet on February 10, 2020
Hi support, I want to disable the right sidebar on home page. I have tried the obvious filter within functions.css but apparently I do something wrong. Please see the site.
You see two sidebars, one within BeaverBuilder and the sidebar at the far right I want to have disabled.
I use:
add_filter( 'generate_sidebar_layout','tu_custom_category_sidebar_layout' );
function tu_custom_category_sidebar_layout( $layout )
{
// If we are on blog page, set the sidebar
if ( is_home() )
return 'no-sidebar';
// Or else, set the regular layout
return $layout;
}
Thanks!
Hi there,
you would need to use the is_front_page() conditional tag instead of the is_home()
Or alternatively you can use the Layout Element to disable the sidebar fro the Front page:
https://docs.generatepress.com/article/layout-element-overview/
Thanks David! Working.
You're welcome