Quote:
Originally Posted by pcoskat
Nifty!
Question: Can this be set to have the column ONLY appear on ShowThread & ForumDisplay, in specific forums? (ie: I only want the column to appear in one forum)
Thanks!
|
I did that with include statements in my forum header.
PHP Code:
<!-- Left Column Code -->
<table border="0" width="$stylevar[outertablewidth]" cellpadding="0" cellspacing="0" align="center">
<if condition="in_array($foruminfo['forumid'], array(0,3,8,29,49,50,51,52,53,59,62))">
<tr>
<td width="15%" valign="top" align="left">$leftcolumn</td>
<td valign="top">
<table width="100%" cellpadding="0" cellspacing="0" border="0">
<tr>
</if><td valign="top">
<!-- End Left Column Code -->
Just change the forum id's to the ones you want to show the left colum on. Leave the 0 though if you want the left column on non-forum pages like home or any pages you have added.