PDA


View Full Version : Unregistered users - Navbar


dfr.sd
08-28-2005, 02:16 PM
In vb if a user isn't registered it will display:

Welcome to the "Your" Forums.
If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.


I know it exists in the forumhome within vb. When I copy it over to adv_portal template I always get errors: Parse error: parse error, expecting `T_STRING' or `T_VARIABLE' in \wwwroot\includes\adminfunctions_template.php(3510) : eval()'d code on line 16

How do you accomplish this? I want my new members to know to register.

Data from forumhome:

<!-- main -->
<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" 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>
</table>
<!-- / guest welcome message -->

Thanks.

-silverdawn

Brian
08-28-2005, 02:44 PM
You need to add the closing </if> tag at the bottom of that code.

dfr.sd
08-28-2005, 02:50 PM
DOH!

Thanks Brian and sorry for my stupidity. LOL :D