Archived topic
Menu below merged header
6 replies · Started by Philipp on May 1, 2020
Is is possible to display the menu below the merged header?
Thank you

Hi there,
Try this PHP snippet:
https://generatepress.com/forums/topic/page-header-image-above-menu/#post-288568
Adding PHP: https://docs.generatepress.com/article/adding-php/
Let me know if this helps :)
Thank you!! Amazing ;D
That php code is like magic to me.
I also activated a sticky mobile hide/reveal header. https://docs.generatepress.com/article/mobile-header/
And would love it also to be placed below the header. Tried changing the php by using bruteforce guessing - with no luck :D
could you please take a look?
thanks a lot!
Hi there,
Give this a shot:
add_action( 'after_setup_theme', function() {
remove_action( 'generate_after_header', 'generate_menu_plus_mobile_header', 5 );
add_action( 'generate_after_header', 'generate_menu_plus_mobile_header', 15 );
} );
Such beauty! Much thanks!
Glad we could help :)