Skip to content
Public Ticket #29250

Hide topbar on pages only

Conversation thread

LucyEdward replied

Customer Reply

Thank you ! : )

PenciDesign Supporter replied

Staff Reply

Hi,

You should paste this code into the function.php of the child theme or via the CodeSnippet plugin here: https://wordpress.org/plugins/code-snippets/

add_filter( 'theme_mod_penci_top_bar_show', function( $value ) {
    if ( is_page() ) {
        return false;
    }
    return $value;
} );

Regards,
PenciDesign.



LucyEdward started the conversation

Conversation Start

Hi,

How can I hide my topbar on pages only?

Thank you.

Want to join this conversation or access attachments? Sign in first.