The placement is currently determined by the
RSS Feed - Content Generation plugin, the content of which is shown below.
PHP Code:
rss_feed_processing(RSS_FEED_FIELD, RSS_FEED_USAGE);
$search_text = '<!-- end what\'s going on box -->';
$insert_text = '';
for($insertc = 0; $insertc < count($feedcontent);)
{
$insert_text .= '$feedcontent['.$insertc++.']<br />';
}
$vbulletin->templatecache['FORUMHOME'] = str_replace($search_text,$search_text.$insert_text,$vbulletin->templatecache['FORUMHOME']);
To have the rss content appear at the top of the forumhome page the easiest thing to do is to change the search text from
<!-- end what\'s going on box --> to
<!-- main -->
Alternatively, you may delete all the search/replace logic in the plugin and edit the template directly by following the guidelines in the
Placing the content on pages section.