Hi there, i have the following challenge:
I have extended the Blog module by adding a custom description field. I use this field to write a summary of the article, so that visitors can get an overview of the article before they actually read it and it has been working well.
My problem is that the RSS feed does not make use of the custom description field at all and defaults to making use of the content of the article as the description.
I extended the Blog like this:
--------------------------------------
class BlogEntry extends Page {
static $db = array(
"Date" => "Datetime",
"Author" => "Text",
"Tags" => "Text",
"Description" => "Text"
);
--------------------------------------
I would like to rather use $BlogEntry.Description as the description field for the rss feed.
Thanks