I'm reserving the secondary menu to appear only when the user logs in. If he/she doesn't, the menu won't show up.

But I've been playing with the settings and looked into php snippets and how-tos with no luck. Can anybody help?

Comments

bs’s picture

You can do it in your template file too just like...

global $user;
if($user->uid){
print $secondary_menus(); 
}

Hope that helps.
Good luck!

frenzo’s picture

Appreciate it :D