Archived topic
Remove Sidebar on Mobile but not dislay none
3 replies · Started by Gopi on February 23, 2020
HI i want to remove sidebar in single post on mobile. I dont want to hide. i want to remove to avoid it from loading.(am using custom site library dispatch)
I have tried like what mentioned in the below code but no success. So pls do the needful.
https://docs.generatepress.com/article/sidebar-layout/#using-a-function
Thanks
Hi there,
try this PHP snippet:
add_filter( 'generate_sidebar_layout', function( $layout ) {
// If we are viewing single post on mobile, set the sidebar
if ( is_single() && wp_is_mobile() ) {
return 'no-sidebar';
}
// Or else, set the regular layout
return $layout;
} );
Please note - the wp_is_mobile() function has to detect the device is a mobile device, so resizing a desktop browser will not apply.
Thanks
Glad to be of help