Quote:
Originally posted by FireFly
Why can't you create a new template set, assign it to a style and use that style in only that forum? Easier than hacking.
Or hack forumdisplay:
Code:
// there are threads
eval("\$forumdisplay[threadslist] = \"".gettemplate('forumdisplay_threadslist')."\";");
Change to something like:
Code:
// there are threads
eval('$forumdisplay[threadslist] = "'.gettemplate(iif($foruminfo['forumid'] == 3, 'forumdisplay_threadslist_specialversion', 'forumdisplay_threadslist')).'";');
|
this should aplay also for the child forums if my forumid is a parent forum, right firefly?
or should i use an array just to make sure...?