How would I structure the conditional statement to only show a particular welcome header phrase when the user is visiting a certain forum?
I tried this and it just showed it on every page of the forum...
Code:
<if condition="$forum[forumid]=22">
<!-- training forum announcement -->
<br />
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tr>
<td class="alt1">
<phrase 1="$bbuserinfo[username]" 2="$vboptions[bbtitle]" 3="sendmessage.php$session[sessionurl]">$vbphrase[welcome_trainingdisclaimer]</phrase>
</td>
</tr>
</table>
<br />
<!-- / training forum announcement -->
<else />
Thanks in advance.