skshost
03-19-07, 09:44 PM
In header.tpl
{php}
if ( $thisPage == 'supporthome' ) {
echo "<span class=currentpage>SUPPORT</span>.";
} else {
echo "<a href=http://my.hostdomain.com/>SUPPORT</a>.";
}
{/php}
In homepage.tpl
{php}
$thisPage = 'supporthome';
{/php}
It's not working, I'm guessing that I need to pass the variable through smarty?
{php}
if ( $thisPage == 'supporthome' ) {
echo "<span class=currentpage>SUPPORT</span>.";
} else {
echo "<a href=http://my.hostdomain.com/>SUPPORT</a>.";
}
{/php}
In homepage.tpl
{php}
$thisPage = 'supporthome';
{/php}
It's not working, I'm guessing that I need to pass the variable through smarty?