Here's the fix:
In the product, edit this (around lines 242-251)
Code:
if($vbulletin->options['toggleforumsall'] || $vbulletin->options['toggleforums']){
if($vbulletin->options['toggleforumsall']){
if (fall) {
$gettickers0 = $db->query_read("
SELECT t.threadid, t.title, t.forumid, t.open, t.dateline, t.visible, t.firstpostid, t.prefixid
FROM " . TABLE_PREFIX . "forum f
INNER JOIN " . TABLE_PREFIX . "thread t ON t.forumid = f.forumid
ORDER BY dateline DESC
LIMIT " . $alllim . "
");
Replace with:
Code:
if($vbulletin->options['toggleforumsall'] || $vbulletin->options['toggleforums']){
if($vbulletin->options['toggleforumsall']){
if (fall) {
$gettickers0 = $db->query_read("
SELECT t.threadid, t.title, t.forumid, t.open, t.dateline, t.visible, t.firstpostid, t.prefixid
FROM " . TABLE_PREFIX . "forum f
INNER JOIN " . TABLE_PREFIX . "thread t ON t.forumid = f.forumid
WHERE f.forumid !=X and f.forumid !=Y AND f.forumid !=Z
ORDER BY dateline DESC
LIMIT " . $alllim . "
");
Edit X, Y, and Z
I have tested this with phpmyadmin.