3
You know, you're right and I pushed back on them re: the full RSS feed.
Now what I'd like to do is to add content to the bottom of the feed that includes two hyperlinks:
1) Read more ... that links to the article; and
2) Another link to the article that displays the full URL.
--
Now for the newbie question... "how do I do this?"
I've analyzed the backend.php script and my first guess is that I add code to this section:
foreach ($sarray as $story) {
$tpl->append('items', array('title' => xoops_utf8_encode(htmlspecialchars($story->title(), ENT_QUOTES)), 'link' => XOOPS_URL.'/modules/news/article.php?storyid='.$story->storyid(), 'guid' => XOOPS_URL.'/modules/news/article.php?storyid='.$story->storyid(), 'pubdate' => formatTimestamp($story->published(), 'rss'), 'description' => xoops_utf8_encode(htmlspecialchars($story->hometext(), ENT_QUOTES))));
}
Am I correct. Is there another place I need to edit? I tried adding a reference to bodytext in this section with no luck.