PDA

View Full Version : Hide calendar and FAQ from guests


toon79
01-17-2012, 01:37 PM
Is there a plugin for this or does anyone currently have an easy way to do it?

Cheers

nerbert
01-17-2012, 11:07 PM
Find the links in the navbar template and enclose them in conditionals


<vb:if condition="$show['member']">
<li> SOME LINK </li>
</vb:if>


or if there's already some conditional


<vb:if condition=" blah blah blah AND $show['member']">
<li> SOME LINK </li>
</vb:if>

toon79
01-18-2012, 07:41 AM
Thanks for that you're a star