Quote:
Originally Posted by Cybernetec
v1.8 - Sep 06. 2006.
-Added: Option to exclude forums
|
What exactly does this feature do? My understanding is that it should exclude forums/subforums from being listed entirely. Although it doesn't seem to do this at all. I tried listing the subforum, the parent forum, and tried also parent category. None of these had any noticable effect.
Either this is a bug or a feature that pertains to something else. In any case, if there a way to hide subforums from being listed from specific forums?
Edit: Now I think I understand what the Exclude function does. Although Is there a way to completely hide subforums from being listed on forumhome?
Edit 2: Found a small work-around for what I need Basically I went into the
forumhome_forumbit_level2_post template and found this code:
Code:
<if condition="$show['subforums']"><div class="smallfont" style="margin-top:$stylevar[cellpadding]px"><strong>$vbphrase[subforums]</strong>: $forum[subforums]</div></if>
and replaced it with this code:
Code:
<if condition="($forum[forumid] == 1 OR $forum[forumid] == 2)"><else />
<if condition="$show['subforums']"><div class="smallfont" style="margin-top:$stylevar[cellpadding]px"><strong>$vbphrase[subforums]</strong>: $forum[subforums]</div></if>
</if>
Where as 1 and 2 are the two forumids I don't want to have the subforums appear under.