Thanks Brian- yeah I stumbled on that when I marked it solved...I am getting a feed now and it validates... but the next step for me is to configure the feed correctly for videos...
Right now the feed shows
Title
Date
Description
But no video thumbnail?
I thought the logical place to start would be in jrVideo and find the template for something like rss_item_detail.tpl but there are no templates for rss in the jrVideo module
I see this template code in the rss_list.tpl and want to add a video thumbnail or player in the spot indicated
{if isset($jrFeed.feed)}
<div class="title"><h2>{$jrFeed.feed.title}</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>
{$item.pubDate|jrCore_date_format}<br>
ADD VIDEO HERE USING SOMETHING LIKE {$item.video}<br>
{$item.description}<br>
</div>
<hr>
{/foreach}
{/if}
</div>
</div>
{/if}
So if thats possible then im still confused on how to add that rss_list.tpl JUST TO the jrVideo module?
All I can come up with is some sort of IF statement that says " if module is jrVideo show a video thumbnail"
Are you able to follow my dilemma?
Seems like it would be easier if each module that used RSS would have its own code and in that code you could just enter stuff like "true/false" to stuff like " Show video thumbnail
I know there has to be a reason but since I first came here I never understood why this part was so complicated