Thanks I figured it out:
Have the forum ID's in a variable in phpinclude_start:
Code:
$test = "1,2,3,4,5,6";
And then use this condition in the templates:
Code:
<if condition="in_array($forumid, array($test))">
stuff
<else />
other stuff
</if>
For some reason the variable data is only being output in certain places, for example forumhome but not forumhome_forumbit_level1_post.
Is there a reason for this, I thought that phpinclude_start was global?