|
Exclude stats from specific subforums on specific forums (e.g. index)
This modification is in the archives.
Hi!
I am developing a http://www.papegaaienforum.com/ and I am importing aprox. 1000 parrot auctions a day via the RSS feed reader from vBulletin. This made all the last post notifications on the forum index show auctions wich is not what I wanted. So I developed this mod to be able to exclude stats from the RSS feeded auction forums on the forum index. Code change required (vB3.6.4): Find in includes/functions_forumlist.php on line 41: PHP Code:
function fetch_last_post_array()
PHP Code:
eval('$rss_forums = array('.$vbulletin->options["rss_exclude_forums"].');');
PHP Code:
if ($parentid == -1 OR !isset($vbulletin->forumcache["$parentid"]))
PHP Code:
if ($parentid == -1 OR !isset($vbulletin->forumcache["$parentid"]) OR (in_array($forumid,$rss_forums) AND in_array($parentid,$noupdate_forums)))
Have Fun! Jan Jaap Download
This modification is archived, downloads are still allowed. Supporters / CoAuthors
|
|||||||||