I tried that, but didn't work...
The previous code however worked as plugin using forumhome_start hook as suggested by kh99.
PHP 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;
This one hide the undesired forums, but that happens in all forum.php and its duplicates. I want to avoid the delete or hide in other pages...
is there a way how to do that??