Archived topic
How to disable sticky menu on selected types of posts?
1 reply · Started by Artur on March 17, 2023
Viewing posts 1–2 of 2
example
post archive
product archive
Hi Artur,
You can try adding this snippet:
add_filter( 'option_generate_menu_plus_settings','db_posts_disable_sticky_nav' );
function db_posts_disable_sticky_nav( $options ) {
if ( is_archive() || is_product_category() ) {
$options['sticky_menu'] = 'false';
}
return $options;
}
Adding PHP: https://docs.generatepress.com/article/adding-php/#code-snippets
This archived topic is closed to new replies.