Quote:
Originally Posted by MoT3rror
You actually need to compare against the userid like this.
Code:
<if condition="$bbuserinfo[userid] == 0">
This is what guests see
<else />
This is what users signed in see
</if>
or PHP code like this. This would require the global file included.
PHP Code:
if($vbulletin->userinfo['userid'] == 0) { //currently is guest } else { //currently signed in }
|
Isn't this the same as the following?:
Code:
<if condition="$show['guest']">
This is what guests see
<else />
This is what users signed in see
</if>