Quote:
Originally Posted by Sal Collaziano
I'd like to display information at the very top of my forum - different for guests, registered members and supporting members. Am I on the right track with the code I've typed below? It doesn't work for me so would somebody mind helping me out?
Thanks in advance...
HTML Code:
<if condition="$bbuserinfo['userid'] == 1">
<p>guest</p>
<else />
<if condition="$bbuserinfo['userid'] == 2">
<p>registered</p>
<else />
<p>not guest or registered</p>
</if>
</if>
Guests get "not guest or registered".
I'm in my own usergroup and I get "guest".
Any help would be appreciated...
|
You appear to be using "userid" in your tests instead of "usergroupid".