Quote:
Originally Posted by mordor1
Does any 1 know how make a redirect on a costum page if user is not loged in?
|
Put in a
Meta Redirect Tag in the template. Put a condition around it based on whether they are a guest or not.
HTML Code:
<vb:if condition="$show['guest']">your tag code</vb:if>
Quote:
Originally Posted by rfsforums
I have notices that are shown in the forum for unregistered users but I'd like to not display them on this new page. How can I turn them off? Thanks for the great article got it to work on the 2nd attempt!
|
Put a condition around the notifications based on THIS_SCRIPT (change 'test' to whatever you defined THIS_SCRIPT to be in your page):
HTML Code:
<vb:if condition="THIS_SCRIPT == 'test'">notification code</vb:if>