Hello,
I installed a fresh version of 4.7 on a site we converted over to Drupal a few weeks back. I created the menu items for primary/secondary menus by doing what I've always done - by going to Settings --> Menus and then simply adding/editing them there.
I just went to the site yesterday to do some updates and noticed that the menus were gone. This was weird in itself as I am the only one with user privaleges to change any admin setting like menus, etc.
So, I thought, oh well, I'll just add them back, right? Wrong...
Right now, under settings, the "Menus" link is not there. So, I don't know how to change or add any menu back to the site. I searched several other places on Drupal and Google for similar problems with no luck.
Any idea why that link to menus would've just disappeared within the "Settings" main dropdown menu?
Here is my menu code in page.tpl:
if (is_array($primary_links)) : $i = 0;
foreach ($primary_links as $link):
if ($i!= sizeof($primary_links)-1) {
print $link
} else {
print $link
}
$i++;
endforeach;
endif;
if (is_array($secondary_links)) :
$i = 0;
foreach ($secondary_links as $link) :
if ($i==0) {
} else {