Quote:
Originally Posted by Ramsesx
I want the welcome header only in the FORUMHOME, please can you tell me how I need to change exactly?
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_q]" 2="register.php$session[sessionurl_q]">$vbphrase[first_visit_message]</phrase>
</td>
</tr>
<!-- / guest welcome message -->
</if>
If I replace this only with $welcomeheaders everything is f*** up. Thanks
|
Quote:
Originally Posted by Ted S
This hack is written to display in the header template, you can use a conditional to limit it to display in the FORUMHOME page but it should remain in the original header location.
|
Use this in the header template to only display on the forum home page:
Code:
<if condition="THIS_SCRIPT=='index'">
$welcomeheaders
</if>
This should work, let me know if it did or not.