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

#74332
webyogi

Hi Tom,

Unfortunately there are some other display related problems with the UBERMENU which means the Automatic Integration provided by UBERMENU is not working too well with the GeneratePress theme inspite of all your help with the CSS code.

We are trying the manual integration way and stumbled upon the code on the support forum provided by you:

remove_filter( ‘wp_nav_menu_args’, ‘generate_wp_nav_menu_args’ );
remove_action( ‘generate_after_header’, ‘generate_add_navigation_after_header’, 5 );
add_action( ‘generate_after_header’ , ‘generate_ubermenu’ , 5 );
function generate_ubermenu()
{ ?>
<div class=”grid-container”>
<?php ubermenu( ‘main’ , array( ‘theme_location’ => ‘primary’ ) ); ?>
</div>
<?php
}

Unfortunately the default menu does not get removed.

Any idea why?

Thanks again.