Topic: Miniportal trick
Hi guys,
I just installed the Miniportal today and think it's fab btw.. Anyway, one thing was bugging me, the fact that the sidebar appeared on the whole forum.. So I played around and found a little fix...
You need to make sure you have the stock template saved in the template dir under forum.tpl, or change the script to suit you.
Open header.php
find:
else
$tpl_main = file_get_contents(PUN_ROOT.'include/template/main.tpl');
before add:
else if (defined('forum'))
$tpl_main = file_get_contents(PUN_ROOT.'include/template/forum.tpl');
Then every page you define as a 'forum' page will use the standard template (the forum.tpl is the stock template I re-named).
Just add
define('forum', 1);
at the start of viewforum.php, viewtopic.php and your forums base php file.