Ok, I got it. open your index file.
Find this:
PHP Code:
// Latest Forum Topics
$threadbits = '';
if ($maxlatethreads!='') {
$threads=$DB_site->query("SELECT
threadid,thread.title,replycount,postusername,postuserid,dateline,views,lastposter,lastpost".iif($showthreadicon,',thread.iconid as iconid,icon.title as icontitle,icon.iconpath as iconpath','')."
FROM thread
".iif ($showthreadicon,'LEFT JOIN icon ON icon.iconid=thread.iconid','')."
WHERE open<>10 $iforumperms ORDER BY lastpost DESC LIMIT $maxlatethreads");
while ($thread=$DB_site->fetch_array($threads)) {
And chagne it to this:
PHP Code:
// Latest Forum Topics
$threadbits = '';
if ($maxlatethreads!='') {
$threads=$DB_site->query("SELECT
threadid,thread.title,replycount,postusername,postuserid,dateline,views,lastposter,lastpost".iif($showthreadicon,',thread.iconid as iconid,icon.title as icontitle,icon.iconpath as iconpath','')."
FROM thread
".iif ($showthreadicon,'LEFT JOIN icon ON icon.iconid=thread.iconid','')."
WHERE forumid != 87 AND open<>10 $iforumperms ORDER BY lastpost DESC LIMIT $maxlatethreads");
while ($thread=$DB_site->fetch_array($threads)) {
You can add
forumid != XX AND as many times as you want. These are the forums you DON'T want to see.