Feature #1932
content element RSS news feed
| Status: | Accepted | Start date: | 2008-10-31 | |
|---|---|---|---|---|
| Priority: | Must have | Due date: | ||
| Assignee: | Krystian Szymukowicz | % Done: | 0% |
|
| Category: | - | |||
| Target version: | 0.2.0 | |||
| Votes: | 0 |
Description
Hi,
first of all, thank you for the great extension...
Unfortunately, at the moment it seems that it is not possible to get the news article by the content element of the RSS news feed.
<content:encoded><![CDATA[ ]]></content:encoded
best regards
Mathias
History
Updated by Krystian Szymukowicz over 4 years ago
- Status changed from New to Accepted
- Assignee set to Krystian Szymukowicz
- Priority changed from Should have to Must have
- Target version set to 0.0.5
Yes - you right Mathias.
I will take care of that as soon as I find some free time.
Updated by Krystian Szymukowicz over 3 years ago
- Target version changed from 0.0.5 to 0.2.0
Updated by Lina Wolf about 3 years ago
- File rssFix.diff added
Hi, to get the description filled with data is easy, realy.
Just add 'XML' in the row of allowed codes in class.tx_rgnewsce_fe.php
Now set the option
plugin.tt_news.rgnewsce.renderSingleInListAndLatest = 1
And the content part will be rendered in the RSS Feeds also. A working example you can see here:
http://abnehmen-blog.eu/abnehmen-blog.html?type=100
The Fix is attached.
Greetings Lina
Updated by Lina Wolf about 3 years ago
Woops, for some reason the diff was not combining the two files properly.
Changes like this:
Line 37 from
if( $pObj->config['code'] 'LIST' || $pObj->config['code'] 'LATEST' || $pObj->config['code'] 'SINGLE') {
to
if( $pObj->config['code'] 'LIST' || $pObj->config['code'] 'LATEST' || $pObj->config['code'] 'SINGLE' || $pObj->config['code'] 'XML') {
And Line 153 from
if( $pObj->config['code'] 'LIST' || $pObj->config['code'] 'LATEST'){
to
if( $pObj->config['code'] 'LIST' || $pObj->config['code'] 'LATEST' || $pObj->config['code'] 'XML'){
Nothing else.
Updated by lol about 2 years ago
Hi
Well I've patched the class.tx_rgnewsce_fe.php but the content isn't rendered in th RSS Feed.