[Resolved] Remove Sidebar on Mobile but not dislay none

Home Forums Support [Resolved] Remove Sidebar on Mobile but not dislay none

Home Forums Support Remove Sidebar on Mobile but not dislay none

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #1174832
    Gopi

    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

    #1175109
    David
    Staff
    Customer Support

    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.

    #1175506
    Gopi

    Thanks

    #1177187
    David
    Staff
    Customer Support

    Glad to be of help

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.