Themify Ultra
Themify Ultra includes Mega Menu functionality which conflicts with Max Mega Menu. It will stop the blue ‘Mega Menu’ button from appearing when hovering over menu items and make it impossible to save the menu settings.
Use an FTP client to edit the class-mega-menu.php file in your theme directory.
IMPORTANT IMPORTANT IMPORTANT: if these instructions are not followed closely, you will create a fatal error in the file. Please take a backup of the file before making edits, and check your changes before saving.
Find:
1 |
function nav_menu_script() { |
Replace with:
1 2 3 4 5 6 7 8 9 10 |
function nav_menu_script() { $plugins = apply_filters( "themify_mega_menu_compatibility", array('megamenu/megamenu.php') ); if ( is_array( $plugins ) ) { foreach ( $plugins as $path ) { if ( is_plugin_active( $path) ) { return; } } } |
Please note this will effectively disable the mega menu built into Themify Ultra.