PDA

View Full Version : Navbar Link for Admin Only


douffle
12-21-2008, 06:14 PM
If you want to have a link that is visible only to members you would use:
<if condition="$show['member']">

Is there a conditional that would show a navbar link only to the administrator or a moderator?

Thanks

Lynne
12-21-2008, 06:31 PM
I do it by usergroups:
<if condition="is_member_of($bbuserinfo, 5, 6, 7)">
stuff here
</if>

douffle
12-21-2008, 06:41 PM
I do it by usergroups:
<if condition="is_member_of($bbuserinfo, 5, 6, 7)">
stuff here
</if>


Thank you very much for your help. Much appreciated.