How to hide something in navbar

betafear

New Member
Hi,


So my question is how to hide something in the navbar when there is someone not logged in a guest for example..


you know when your a guest on a forum you see in the navbar to register but when you are member and logged in the register in the navbar is gone.

is it also possible to do something for only a sertain group like that the mods see it in the navbar but not the members?

Kind regards
 
you could use if statement for example :

Code:
<if condition="is_member_of($bbuserinfo, [color=Red][b]2,5,6,7[/b][/color])"> 
        <td class="vbmenu_control"><a href="LINK">link name</a></td>
        </if>
Red numbers are your usergroups allow to see link.

Hope that help.
 
Back
Top