Quote:
Originally Posted by nsilva
I'm having a little trouble. I got the page to work, but now I want it to show something if a user is logged in, and something else if a guest views the page. How could I do this?
|
Put a condition around the stuff in the template:
HTML Code:
<vb:if condition="$show['member']">
stuff to show logged in members
<vb:else />
stuff to show non-logged in users (guests)
</vb:if>