This will work:
Quote:
Dear $bbuserinfo[username], this forum is currently Closed.
|
$bbuserinfo[username] will output "Unregistered" to guests, so if you would prefer it to say "Dear Guest", put the following code:
Quote:
<if condition="$bbuserinfo['userid']">
Dear $bbuserinfo[username], this forum is currently closed.
<else>
Dear Guest, the forum is currently closed.
</if>
|