Site logo

Archived topic

Disabling "back to top" button on a specific page?

3 replies · Started by Benjamin on April 8, 2020

Viewing posts 1–4 of 4

Hi,

Is it possible to disable the "back to top" button on a specific page?

Thanks

Hi there,

You can use the filter provided here:

https://docs.generatepress.com/article/option_generate_settings/

For example this would disable it on the page whose slug is about-me:

add_filter( 'option_generate_settings','lh_single_posts_settings' );
function lh_single_posts_settings( $options ) {
    if ( is_page('about-me') ) {
        $options['back_to_top'] = '';
    }
    
    return $options;
}

Thanks :)

You're welcome

This archived topic is closed to new replies.