I modified the if statement in the plugin to selectively eliminate the feed icon from private forums where no feed would exist anyway, in order to avoid confusion among my users.
HTML Code:
if ($vbulletin->options['externalrss'] and $foruminfo[forumid]!='20' and $foruminfo[forumid]!='33')
{
$show['rss'] = true;
}
Anyone know if I can list multiple forumids in one argument?
HTML Code:
$foruminfo[forumid]!='20,33'
didn't work.