In
post #1430, the instructions are given on how to modify the index.php file in order to exclude forums from showing up in the
Latest Forum Topics section.
This is what I have now in my modified index.php file:
Code:
$forums=$DB_site->query('SELECT forumid,parentid,displayorder FROM forum WHERE forumid != 4 AND forumid != 8 AND
displayorder<>0 ORDER BY parentid,displayorder');
My news forums are 5 and 7. Despite the modified index.php file, the posts from forums 4 and 8 still show up in the "Latest Forum Topics" section. I can't figure out why.