cassihl
Member
Posted 9 months ago #
I'm using the RSSImport plugin to pull in a feed to display on a page. I would like a "Read More" link after each entry item to take the viewer to that specific post. I put in after_desc="<a href='%href%'>Read more</a>" which creates a link, but it gives all of the entries the same link to the first entry. Am I doing something wrong? I need each link to be unique to the specific entry.
Thank you.
cassihl
Member
Posted 3 months ago #
I still haven't solved this problem. Any ideas?
belgianwolfie
Member
Posted 3 months ago #
belgianwolfie
Member
Posted 3 months ago #
don't have much time, so fixed it the hardcoded way.
in rssimport.php
under line 321 add:
$after_desc = "<a href='" . $href . "'>Read more</a>";
make sure that this is the last line where after_desc is defined.
that should fix your issue , for now , in a very ugly , hardcoded way ... as stated earlier.