to hide unwanted info from certain forums go into index.php and edit these line
Quote:
$pop = $DB_site->query("SELECT title,threadid,lastpost,lastposter,views FROM thread WHERE forumid<>'X' AND forumid<>'Y' AND forumid<>'Z' ORDER BY views DESC LIMIT 5");
---------------------------
$pop1 = $DB_site->query('SELECT title,threadid,views FROM thread WHERE forumid<>'X' AND forumid<>'Y' AND forumid<>'Z' ORDER BY views DESC LIMIT 1');
---------------------------
$pop2 = $DB_site->query("SELECT title,threadid,lastposter,views FROM thread WHERE forumid<>'X' AND forumid<>'Y' AND forumid<>'Z' ORDER BY views DESC LIMIT 1");
---------------------------
|
and make the X,Z and Z to the number of the forums you wish to hide
if you need to add more just PM me and i will ship you the code