Quote:
Originally Posted by AnimeWebby
Add:
PHP Code:
$excludedusers = "0"; // users to be excluded from latest threads. Format "0,5,7"
Under:
PHP Code:
$excludedforums = "13"; // forums to be excluded from latest threads. Format "0,5,7"
And change 0 to the id's of the user/s that you use to post rss feeds.
And Add:
PHP Code:
AND thread.userid NOT IN ($excludedusers)
Under:
PHP Code:
WHERE thread.forumid NOT IN ($excludedforums)
BTW this is untested so backup your index.php file before doing this, as you might need to re use it later.
Oh and terribly sorry for not releasing any new version I have been extremely busy with work and my sites. Hopefully I might get something done soon.
|
It must be
PHP Code:
AND user.userid NOT IN ($excludedusers)
and not
PHP Code:
WHERE thread.forumid NOT IN ($excludedforums)
then is your modification working.
You should add this to the downloadable version