Hrm...
You will need to alter the query this time
Again, not tested, but in the plugin code, find:
PHP Code:
AND forumid NOT IN (0$limitfids)
add above:
PHP Code:
AND forumid IN ($showfids)
Now find:
PHP Code:
// ## HIDE FORUMS WITHOUT THE CANVIEW PERMISSION ##
if (!$forumperms["$forum[forumid]"] & $vbulletin->bf_ugp_forumpermissions['canview']) {
$limitfids .= ','.$forum['forumid'];
}
add below:
PHP Code:
$showfids = x,y,z;
Replace [high]x,y,z[/high] with the forumids you want users to be able to view
Satan