Log in

View Full Version : nav bar help


SoniaTel
09-17-2012, 05:18 PM
I have added an item on nav bar as shown in picture [yellow one].. how can i hide it from guest ... only registered members can see this ..

http://imageshack.us/a/img713/4278/navbarp.jpg

ForceHSS
09-17-2012, 05:48 PM
vb version?

SoniaTel
09-18-2012, 01:40 AM
I am using version 3.8.7

ForceHSS
09-18-2012, 05:09 AM
If it was vb4 then you could of used the plugin in my sig it would do that for you but for your version not sure if there is a plugin out there for that you could search

ShawneyJ
09-18-2012, 06:41 AM
I just usually use:

<if condition="$show['member']">
<td class="vbmenu_control"><a href="link.php">Downloads</a></td>
</if>

Thats for vbulletin default navbar.
If its a different style like a header nav, just add:

<if condition="$show['member']">
YOUR NAV CODE
</if>


Works fine for me.