Quote:
Originally Posted by Coen Jeukens
My defintion of a first time user is:
PHP Code:
if ($show['guest'])
Q Can you point me in the right direction to create a page in front of my forum as displayed in the attachment of post#1.
|
If that is the criteria, then in a template you can simply go:
HTML Code:
<if condition="$show['guest']">
stuff for if they are a guest (not logged in)
<else />
stuff for if they are a user (logged in)
</if>
I don't use vbA, so I really can't tell you much more than that.