hi,
i am trying to create a new theme based on the "Two Column Theme".
i want to insert the vbadvanced portal left column instead of the stats.
code is following:
Code:
$stylevar[htmldoctype]
<html dir="$stylevar[textdirection]" lang="$stylevar[languagecode]">
<head>
<title>$vboptions[bbtitle] $WT_PageName</title>
$headinclude
</head>
<body>
$header
$navbar
$nowbrowsing
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="$vba_options[portal_leftcolwidth]" valign="top">
<if condition="$show['left_column']">
$home[leftblocks]
</if>
<br>
</td>
<td width="20"><input type="image" src="$vboptions[cleargifurl]" width="20" height="1"></td>
<td valign="top"> <table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%">
<thead>
<tr>
<td class="tcat" align="left">» $WT_PageName</td>
</tr>
<tr>
<td class="alt2" align="left">
<div class="normalfont">
$includedtemplate
</div>
</td>
</tr>
<tr>
<td class="thead" align="left"> Page
Visitors: <b>$count</b>, Last Visitor was $WT[lastvisitorname]
at $WT[lastvisitdate]. $WT_Editor_link<br>
Page Created at <b>$creationdate</b>, Last Modified
: <b>$lasteditdate</b>.</td>
</tr>
</thead>
</table>
</td>
</tr>
</table>
$footer
</body>
</html>
but when i try to view the testpage it says:
Quote:
Parse error: parse error, expecting `T_STRING' or `T_VARIABLE' or `T_NUM_STRING' in /path/to/forum/view.php(657) : eval()'d code on line 14
|
is it possible to include the portal boxes and when, how ?
Thank you.