I wish I could wrap my brain around this...
Right now I want an RSS feed off of my members page to display "Newest Members"
I am able to get that feed here
http://drillingahead.com/feed/profile
Only I want the code changed so that it ONLY displays the user image ( and user name on mouseover)
I have 2 rss templates to edit
rss.tpl
rss_list.tpl
First question is which template do I use as a starting template for my feed or do I combine both?
Second question is really more of a matter of requesting a HELP document on this explaining a few examples of editing the RSS template
For instance if you want to remove description do this
If you want to add an image do this..etc
Wondering if you figured this out Restmin?
Looking at it I come up with something like this
{if isset($jrFeed.feed)}
<div class="title"><h2>{$jrFeed.feed.Newest Members}</h2></div>
<div class="block_content">
<div class="item" style="height:462px;overflow:auto;">
{if isset($jrFeed.feed.item)}
{foreach from=$jrFeed.feed.item item="item"}
<div class="normal">
<a href="{$item.link}">{$item.title}</a><br>
<br>
{$item.image}<br>
</div>
<hr>
{/foreach}
{/if}
</div>
</div>
{/if}
But I know this has to be way off...
updated by @derrickhand300: 04/20/15 11:57:04AM