menus and footer menu visibilty how?

resif
@resif
6 years ago
187 posts
i have some menus at footer
and i want to show only some quotas...
how can i edit menu links?
and my web site view is limited only for login users..
how can i show some menus to all
updated by @resif: 03/17/19 10:21:08PM
michael
@michael
6 years ago
7,714 posts
Use the {debug} in your footer template to find out what variables you have.
https://www.jamroom.net/the-jamroom-network/documentation/module-developer-guide/1477/debug

The one you're after is probably {$_user.user_quota_id} then wrap your menu items in a check
{if $_user.user_quota_id == 3}
Stuff here will only show to users in quota id 3
{/if}

Tags