Site logo

Archived topic

Custom colored hook under the header/navigation bar

7 replies · Started by Huseyin on April 24, 2020

Viewing posts 1–8 of 8

Thanks, Leo for the reply

Yes I'm referring to that part
Wondering if this feature will work on selected pages? Because I only want the secondary navigation in selected pages

Thanks but I want the secondary navigation under the hero header, how could I achieve this?

Hi there,

add this PHP Snippet to your site:

add_action( 'after_setup_theme','lh_move_secondary_navigation' );
function lh_move_secondary_navigation() {
    remove_action( 'generate_after_header', 'generate_add_secondary_navigation_after_header', 7 );
    add_action( 'generate_after_header', 'generate_add_secondary_navigation_after_header', 15 );
}

done, what should I name the snippet?
Thanks

Its up to you :)

This archived topic is closed to new replies.