It happens I'm working on an update to a mod that ignores a list of forums. Here's a little code snippet for not listing selected forums:
Code:
$ignore_array = array(11,12,23,24); //example of forum id's you don't want to show
$cache = array();
foreach($vbulletin->forumcache AS $forumcache)
{
$i = $forumcache['forumid'];
if(!in_array($i, $ignore_array))
{
$cache[$i] = $forumcache;
}
}
$vbulletin->forumcache = $cache;