1
So I made a few new groups, and I want one of them, with group id 4, to have an extra link anywhere in their user menu.
The only way I see of doing anything similar with the smarty tags is something like
<{if $xoops_isadmin}>
<a class="menuTop"href="link">
Link
a>
<{/if}>
But that's for administrators, and I most definitely don't want to make them all admins :/
is there something in the smarty/php that could check for a group id? Say, like
<{if $xoops_isgroup(4)}>
<a class="menuTop"href="link">
Link
a>
<{/if}>
or something?
Cheers
-E