Hi,
I have a problem importing .rss/atom feed in EE.
My code in template is:
{exp:channel:entries channel="blog" limit="3" dynamic="on" category="{category_id}" }
{exp:ajw_feedparser url="http://{blog_rss}" itempath="/feed/entry" cache_refresh="60" limit="1"}
<li>
<h3><a href="http://{title_permalink=">{title}</a></h3>
<p> <time datetime="2011-01-20T06:20:00-00:00">{published format="%l, %j %F %Y at %G:%i"}</time><br />
{channel_description}<br />
<a href="http://{author/uri}">{author/name}</a><br />
</li></p>
<p>{/exp:ajw_feedparser} <br />
{/exp:channel:entries}My problem is that the {title} is used by both EE and AJW feed parser and I have to get rid of the EE {title} somehow but still keep the {exp:channel:entries} because the client is adding RSS feeds from EE back-end.
Thank’s !