Sorry for the dual communications Lynne, I'll stay over here for now.
I modified the bottom of the index.php file to this:
/**
require('forum.php');
*/
require('tags.php');
So, commented out the forum.php. [S]This still doesn't fix the link in the logo though.[/S]
--------------- Added [DATE]1304646504[/DATE] at [TIME]1304646504[/TIME] ---------------
I kinda powered through this doing it the way I knew would work, but I suspect this isn't the most elegant solution. I went into the 'header' template and made this change:
From this:
Code:
<vb:if condition="$stylevar['titleimage']"><div><a name="top" href="{vb:link forumhome}" class="logo-image"><img src="{vb:stylevar titleimage}" alt="{vb:rawphrase x_powered_by_vbulletin, {vb:raw vboptions.bbtitle}}" /></a>
To this:
Code:
<vb:if condition="$stylevar['titleimage']"><div><a name="top" href="http://shoutstreet.com" class="logo-image"><img src="{vb:stylevar titleimage}" alt="{vb:rawphrase x_powered_by_vbulletin, {vb:raw vboptions.bbtitle}}" /></a>
I understand how phrases work, but is there a system to create and manage those vb tags, such as
{vb:link forumhome}?
EDIT: How embarrassing, there's an online manual that explains the template syntax.