EcoForumZ
05-13-2008, 10:00 PM
This mod with prevent RSS feeds from showing up in active topics and todays posts. A must have if you download RSS feeds to your forum.
This has been tested in VB 3.5, 3.6, and 3.7
Create a plugin in admincp and fill in the below fields
Product = Vbulletin
Hook Location = search_start
Title = "anything you like"
Execution Order = 5
Plugin PHP Code = See below for details
*** To remove single forum ***
Replace 86 with the forum ID you wish to exclude.
$_REQUEST['exclude'] .= ',86';
*** To remove multiple forums ***
Replace 86,88,89,93 with the forum ID's you wish to exclude seperated by a comma ","
$_REQUEST['exclude'] .= ',86,88,89,93';
Please Note: You must begin your list of domain ID's with a comma ","
This has been tested in VB 3.5, 3.6, and 3.7
Create a plugin in admincp and fill in the below fields
Product = Vbulletin
Hook Location = search_start
Title = "anything you like"
Execution Order = 5
Plugin PHP Code = See below for details
*** To remove single forum ***
Replace 86 with the forum ID you wish to exclude.
$_REQUEST['exclude'] .= ',86';
*** To remove multiple forums ***
Replace 86,88,89,93 with the forum ID's you wish to exclude seperated by a comma ","
$_REQUEST['exclude'] .= ',86,88,89,93';
Please Note: You must begin your list of domain ID's with a comma ","