For vB2.x look in the search.php file for:
$action=="getnew"
scroll down about 19 lines and you'll see two lines that start with:
$wheresql.=
Below those two lines add:
$wheresql.=" AND thread.forumid<>##";
replace ## with the forumid of the forum you don't want to include in view new posts. You can put multiple forums multiple forums in there by adding another AND thread.forumid<>## inside the quotes. You can find the forum ID by going to that forum and looking in the url. You can also do the same thing in the "View Today's Active Threads" for users not logged in by searching for:
$action=="getdaily"
in the same file and making the same changes.
|