In Blocks, the Main menu is in the "disabled" section here: admin/structure/block (ZURB Foundation's tab)
In Appearance, the Main menu is Unchecked here: admin/appearance/settings/zurb_foundation AND Also here: admin/appearance/settings
Even after I deleted all the "Main Menu" links, they gray bar of a menu still persists.
Localhost. I have flushed all caches. The theme registry is being rebuilt every time. I am using Safari with caching disabled and empty.
The Main menu does not appear in the default Bartik theme.
Apologies if I'm missing something obvious. Am I missing another admin tool to turn off the menu?
Comments
Comment #1
Linc commentedI am having the same issue. Switching to another theme removed menus.
Comment #2
kevinquillen commentedI believe in template.php and in page.tpl.php the Main Menu is being output because no other menu is set in the Navigation region.
Comment #3
firelf15 commentedIs that working as intended then? e.g. Maybe the Bartik theme is generating a an invisible empty menu?
Comment #4
kevinquillen commentedIt's totally dependent on what the theme does in template.php. The provided variable (usually it is $primary_links) is generated and fed to page.tpl or any template the developer wishes to display it in.
If you still have alpha1, it would be page.tpl.php - look for where the main navigation is put in the template. I am almost certain it displays primary links by default if no block is passed to the region - and you can find that in includes/menu.inc of the theme I believe.
Comment #5
kevinquillen commentedIn your starter template.php, you can unset $main_menu_links and remove any menu from that region in the block admin to totally disable it.