Quote:
Originally Posted by cooltechie
Can you tell me if this allows only logged in user to see the link? I noticed that some default link only show up when logged in so which part allow that. Thank you.
|
In order for you to regulate who sees the links, you will need this code:
Code:
<!-- Navbar Links -->
<vb:if condition="$show['member']">
<div align="center">
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="0" border="3" width="100%" align="center" style="border-top-width:1px">
<tr align="center">
<td class="vbmenu_control"><a href="LINK HERE">LINK NAME</a></td>
<td class="vbmenu_control"><a href="LINK HERE">LINK NAME</a></td>
<td class="vbmenu_control"><a href="LINK HERE">LINK NAME</a></td>
<td class="vbmenu_control"><a href="LINK HERE">LINK NAME</a></td>
<td class="vbmenu_control"><a href="LINK HERE">LINK NAME</a></td>
<td class="vbmenu_control"><a href="LINK HERE">LINK NAME</a></td>
</tr>
</table>
</div>
</vb:if>
<!-- / Navbar Links -->
You notice the "if" conditional. That is what you need to regulate who sees it by way of your usergroup permission settings.