Log in

View Full Version : [How to] disable / remove "Welcome to" box?


gamerfu
06-24-2009, 10:55 AM
How can I disable the "Welcome to" box that guest see?

Simple On/Off Toggle?

nnStaff
06-30-2009, 03:38 AM
Go into the Admin CP and to Styles & Templates and edit each of the parent styles for 'FORUMHOME'

search for

<if condition="$show['guest']">
<!-- guest welcome message -->
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tr>
<td class="tcat"><phrase 1="$vboptions[bbtitle]">$vbphrase[welcome_to_the_x]</phrase></td>
</tr>
<tr>
<td class="alt1">
<phrase 1="faq.php$session[sessionurl_q]" 2="register.php$session[sessionurl_q]">$vbphrase[first_visit_message]</phrase>
</td>
</tr>
</table>
<!-- / guest welcome message -->
<br />
</if>

and either remove it or comment it out.