Floris
Mon 19th Apr '04, 6:20am
How To Remove the Guest Welcome Message?
(by: dmatthams (http://www.vbulletin.com/forum/showthread.php?t=102083))
You can remove the message that shows to guests on the index.php page of your forum by removing a bit of code from the forumhome template.
Admin Control Panel > Styles & Templates > Style Manager > Expand the Style you want to modify > Expand the Forum Home Templates > Open the 'FORUMHOME' template.
From the FORUMHOME template, find this code:
<if condition="$show['guest']">
<!-- guest welcome message -->
<tr>
<td class="tcat" colspan="<if condition="$vboptions['showmoderatorcolumn']">6<else />5</if>"><phrase 1="$vboptions[bbtitle]">$vbphrase[welcome_to_the_x]</phrase></td>
</tr>
<tr>
<td class="alt1" colspan="<if condition="$vboptions['showmoderatorcolumn']">6<else />5</if>">
<phrase 1="faq.php?$session[sessionurl]" 2="register.php?$session[sessionurl]">$vbphrase[first_visit_message]</phrase>
</td>
</tr>
<!-- / guest welcome message -->
</if>
And remove it!
Save the template.
Done!
(by: dmatthams (http://www.vbulletin.com/forum/showthread.php?t=102083))
You can remove the message that shows to guests on the index.php page of your forum by removing a bit of code from the forumhome template.
Admin Control Panel > Styles & Templates > Style Manager > Expand the Style you want to modify > Expand the Forum Home Templates > Open the 'FORUMHOME' template.
From the FORUMHOME template, find this code:
<if condition="$show['guest']">
<!-- guest welcome message -->
<tr>
<td class="tcat" colspan="<if condition="$vboptions['showmoderatorcolumn']">6<else />5</if>"><phrase 1="$vboptions[bbtitle]">$vbphrase[welcome_to_the_x]</phrase></td>
</tr>
<tr>
<td class="alt1" colspan="<if condition="$vboptions['showmoderatorcolumn']">6<else />5</if>">
<phrase 1="faq.php?$session[sessionurl]" 2="register.php?$session[sessionurl]">$vbphrase[first_visit_message]</phrase>
</td>
</tr>
<!-- / guest welcome message -->
</if>
And remove it!
Save the template.
Done!