Hi there, I want to have no sidebar on my BuddyPress register page, so members content is not exposed for logged out users.
The Layout of the page is set to No sidebars, and I even added this code to remove the sidebar, but nothing helps, the sidebar is still there. The id is correct, and I have also tried the page slug ‘register’ as well.
Why is this page alone totally unaffected to all methods?
Regards
Carsten
add_filter( 'generate_sidebar_layout', function( $layout ) {
if ( is_page(34311) ) {
return 'no-sidebar';
}
// Or else, set the regular layout
return $layout;
} );