Reply To: Integration with UBERMENU

Home Forums Support Integration with UBERMENU Reply To: Integration with UBERMENU

Home Forums Support Integration with UBERMENU Reply To: Integration with UBERMENU

#74590
webyogi

Hi,

Yes the navigation is set to display “Below Header”.

I have now changed the navigation position to “Above Header” under:

Appereance > Customize > Layout > Navigation Layout

and the functions.php to:

remove_filter( ‘wp_nav_menu_args’, ‘generate_wp_nav_menu_args’ );
remove_action( ‘generate_before_header’, ‘generate_add_navigation_before_header’, 5 );
remove_action( ‘generate_after_header’, ‘generate_add_navigation_after_header’, 5 );
add_action( ‘generate_after_header’ , ‘generate_ubermenu’ , 5 );

As you can see the UBERMENU is getting displayed correctly now. Just the the default menu still remains which needs to be removed.

Thnx