Hi all,
I have a menu script for creating unique menus, this includes styling, html and script.
I will be removing the current default menu and placing this menu in it's place instead.
The thing I want to know is how would I get two navigation menus working in the same position. One would need to be called for non-logged in users, the other would be called when a user is logged in.
Any help would be great. Something like this?
Would that work?
I have a menu script for creating unique menus, this includes styling, html and script.
I will be removing the current default menu and placing this menu in it's place instead.
The thing I want to know is how would I get two navigation menus working in the same position. One would need to be called for non-logged in users, the other would be called when a user is logged in.
Any help would be great. Something like this?
Code:
{if $loggedin}
<--------------logged in menu code here-------------->
{else}
<--------------Visitor menu code here-------------->
{/if}