Home › Forums › Support › main navigation menu after the pageheader, but only on the home page This topic has 1 reply, 2 voices, and was last updated 4 years, 5 months ago by Leo. Viewing 2 posts - 1 through 2 (of 2 total) Author Posts December 16, 2017 at 10:46 am #450979 Teresa Hello I would like to put the main navigation menu after the pageheader, but only on the home page. Is it possible to do this? Thank you very much GP Premium 1.5.6 December 16, 2017 at 12:05 pm #451007 LeoStaff Customer Support Hi there, Give this snippet a shot: add_action('wp','generate_change_nav_position'); function generate_change_nav_position() { if ( is_front_page() ) { remove_action( 'generate_after_header', 'generate_add_navigation_after_header', 5 ); add_action( 'generate_after_header', 'generate_add_navigation_after_header', 29 ); } } Adding PHP: https://docs.generatepress.com/article/adding-php/ Documentation: http://docs.generatepress.com/ Adding CSS: http://docs.generatepress.com/article/adding-css/ Author Posts Viewing 2 posts - 1 through 2 (of 2 total) You must be logged in to reply to this topic. Log In Username: Password: Keep me signed in Log In