Found a really quick and dirty way around this for now and figured I'd post it here in case anyone else was impatient and really wanted to get this done like me
In template >cv_ffl_forumlist
Find:
Code:
$adv_portal_forumlist
Directly after it add:
Code:
<tr>
<td class="alt1">
<a href="ACTUAL PAGE URL" title="TITLE FOR YOUR PAGE"><strong>DISPLAYED TITLE</strong></a>
</td>
<td class="alt1" align="center">
<a href="FEED URL" title="TITLE FOR FEED"><img src="$vboptions[bburl]/images/cinvin_forum_feed_listing/rss.gif" border="0" alt="ALT TEXT" /></a>
</td>
<td class="alt1" align="center">
<a href="http://add.my.yahoo.com/rss?url=FEED URL" title="TITLE FOR FEED"><img src="$vboptions[bburl]/images/cinvin_forum_feed_listing/addtomyyahoo4.gif" border="0" alt="ALT TEXT" /></a>
</td>
<td class="alt1" align="center">
<a href="http://www.bloglines.com/sub/FEED URL" title="TITLE FOR FEED"><img src="$vboptions[bburl]/images/cinvin_forum_feed_listing/addtobloglines.gif" border="0" alt="ALT TEXT" /></a>
</td>
<td class="alt1" align="center">
<a href="http://fusion.google.com/add?feedurl=FEED URL" title="TITLE FOR FEED"><img src="$vboptions[bburl]/images/cinvin_forum_feed_listing/add-to-google-plus.gif" border="0" alt="ALT TEXT" /></a>
</td>
</tr>
You need to do this for EACH additional feed you want to be displayed and update the parts in RED with the appropriate information.
and to add the space to separate categories or feed types, use the following code:
Code:
<tr><td class="alt1" colspan="$vboptions[cv_ffl_colspan]"><br /></td></tr>
And to list a category heading (without any RSS feeds) use the following code:
Code:
<tr><td class="alt1" colspan="$vboptions[cv_ffl_colspan]">
<strong><a href="URL TO PAGE" title="PAGE TITLE">DISPLAY TITLE</a></strong>
</td></tr>