Yes possible just use if - else it will work below is example and demo
PHP Code:
<vb:if condition="in_array($forum['forumid'], array(9))">
<div class="divspoiler">
<input type="button" class="spb" value="→ MORE SUBFORUMS" onclick="if (this.parentNode.nextSibling.childNodes[0].style.display != '') { this.parentNode.nextSibling.childNodes[0].style.display = ''; this.value = '↑ HIDE SUBFORUMS'; } else { this.parentNode.nextSibling.childNodes[0].style.display = 'none'; this.value = '↓ SHOW SUBFORUMS'; }" />
</div><div><div class="spoiler" style="display: none;">
<div style="padding:1px;">{vb:raw forum.subforums}</div>
</div></div>
<vb:else />
{vb:raw forum.subforums}
</vb:if>
were
9 is my forum id for
Programming. Just place comma after each forum id example below
PHP Code:
<vb:if condition="in_array($forum['forumid'], array(9,11,105,200))">
Regards,