[Resolved] How to hide the up button for mobile?

Home Forums Support [Resolved] How to hide the up button for mobile?

Home Forums Support How to hide the up button for mobile?

Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #1363837
    Yigal

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

    Thanks in advance!

    #1364042
    David
    Staff
    Customer Support

    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;
    }
    #1364087
    Yigal

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

    #1364100
    Yigal

    Solved

    #1364135
    David
    Staff
    Customer Support

    Glad to hear that !

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