Goliath
Using an FTP Client or a file editor within your hosting control panel, edit the following file:
wp-content/themes/goliath/theme/templates/menu.php
At the very top of the file, add this:
1 2 3 4 5 6 7 8 9 |
<?php if ( function_exists('max_mega_menu_is_enabled') && max_mega_menu_is_enabled('primary-menu') ) : ?> <div class="navbar navbar-default menu"> <div class="container"> <?php wp_nav_menu( array( 'theme_location' => 'primary-menu' ) ); ?> </div> </div> <?php else: ?> |
At the very bottom of the file, add this:
1 |
<?php endif; ?> |