Site logo

Archived topic

How to hide the up button for mobile?

4 replies · Started by Yigal on July 14, 2020

Viewing posts 1–5 of 5

Question: How to hide the up button for mobile? (Used "Charge" from Site Library)

Thanks in advance!

Hi there,

do you mean the back to top button ?

https://docs.generatepress.com/article/back-to-top-button/

If so try adding this PHP Snippet:

add_filter( 'option_generate_settings','no_mobile_back_to_top' );
function no_mobile_back_to_top( $options ) {
    if ( wp_is_mobile() ) {
        $options['back_to_top'] = 'disable';
    }
    
    return $options;
}

Yes it works!
Thanks so much for your help, David!
Good luck!

Solved

Glad to hear that !

This archived topic is closed to new replies.