Open forumdisplay.php and find:
PHP Code:
eval("dooutput(\"".gettemplate('forumdisplay')."\");");
?>
above it add
PHP Code:
// Get Show template for Forumid XX
$showbitifid='';
if ($forumid == 'XX') {
eval("\$showbitifid = \"".gettemplate('template_name')."\";");
}
// End -Arunan
Replace XX with the forum id, and template_name with the actualy name of the template.
Open the Forum Display template and add
Where ever you want the template to show when $forumid=XX
Good Luck
-Arunan