Creator World
Creator World has it’s own JavaScript functionality for the main menu which will continue to be applied to Max Mega Menu once it’s enabled.
Restore hover functionality and remove duplicate mobile toggle button
Copy the header.php file to your Child Theme.
Find:
1 2 3 4 5 6 |
<div class="toggle"> <a class="toggleMenu" href="#"> <?php _e('Menu','creator-world'); ?> </a> </div> <!-- toggle --> <div class="sitenav"> <?php wp_nav_menu(array('theme_location' => 'primary')); ?> </div> |
Replace with:
1 2 3 |
<div class="sitenav-mmm"> <?php wp_nav_menu(array('theme_location' => 'primary')); ?> </div> |