Nirvana
Copy the themes header.php file to your Child Theme.
Find:
1 2 3 4 |
<a id="nav-toggle"><span> </span></a> <nav id="access" role="navigation"> <?php cryout_access_hook();?> </nav><!-- #access --> |
Replace with:
1 2 3 4 5 6 7 8 |
<?php if( function_exists('max_mega_menu_is_enabled') && max_mega_menu_is_enabled('primary') ): ?> <?php wp_nav_menu(array('theme_location' => 'primary')); ?> <?php else: ?> <a id="nav-toggle"><span> </span></a> <nav id="access" role="navigation"> <?php cryout_access_hook();?> </nav><!-- #access --> <?php endif; ?> |