Quote:
Originally Posted by whitemike &exclude=X |
You can use this little addition, takes a manual edit to your navbar template like this:
/forums/search.php?do=getnew&exclude=1,2,3
1,2,3 being forum id 1,2, & 3 to be excluded from new posts search.
That'll work, but here's what I run as a small plugin. It does the exact same thing, but doesn't require any template edits:
- Admin CP
- Add New Plugin
- Set Product as vBulletin
- Set Hook location to "search_start"
- Set title to "Exclude forum from new posts" or something similar
- Leave the execution order at 5
- In the PHP Plugin code field insert:
$_REQUEST['exclude'] .= ',1,20,35'; - Change 1,20 & 35 to match the forum IDs you wish to exclude. You must keep the initial comma before the 1, otherwise the plugin does not function.
This plugin does not affect your normal forum search function.