By Elias on Saturday, 09 January 2016
Posted in General
Replies 6
Likes 0
Views 640
Votes 0
Dear Friends,

i need some support to make the correct settings for rss export to another application.

i have activated Automated Truncation. i only get the introtext, but need to export the full text.

http://hak-feldkirch.at/aktuell/categories/news.html?format=feed&type=rss

joomlas k2 works right with and without Automated Truncation
Hey Andreas,

If you have activated automated truncation, this is the default behavior. If you do not want posts to be automatically truncated, you need to turn off the automated truncation

If you want, you can edit the file /components/com_easyblog/views/categories/view.feed.php and at line 100 locate the codes below,


$item->description = $image . $post->getIntro();


Replace it with,


$item->description = $image . $post->getContent('entry');
·
Sunday, 10 January 2016 00:08
·
0 Likes
·
0 Votes
·
0 Comments
·
dear friends,

1) tried different settings, but still not get the full text in rss by activated "automated trunction"

2) the placeholderpic is not part of the rss

may you can help
·
Saturday, 12 March 2016 01:25
·
0 Likes
·
0 Votes
·
0 Comments
·
addition:

i need to get the full text in rss by activated automated trunction, because my app is going to be filled with rss feed.
·
Sunday, 13 March 2016 00:53
·
0 Likes
·
0 Votes
·
0 Comments
·
Hi Andreas,

I am really sorry for the delay of this reply as it weekends for all of us here.

May I know do you want to get a full text when you want to import the rss feed to your site instead of introtext? You can try to configure your rss feed importer to get full content from the feed by activating the settings from the screenshot here, http://screencast.com/t/RFoLpbJSGk .

However, if you want to make your easyblog site to display full content in rss feed while enabling automatic truncation for your frontpage, you can go to your /components/com_easyblog/views/categories/view.feed.php and edit the code below at line 100:
$item->description = $image . $post->getIntro();

// replace it with

$item->description = $image . $post->getIntro(false, false);


Hope these help.
·
Monday, 14 March 2016 13:15
·
0 Likes
·
0 Votes
·
0 Comments
·
seems to work with getContent (false, false);

what is (false, false) ?

best regards
·
Monday, 21 March 2016 21:14
·
0 Likes
·
0 Votes
·
0 Comments
·
Hey Andreas,

The first argument determines if the getIntro method should strip html tags. While the second argument determines if the getIntro method should be truncating the content

You can find these definitions in the library /administrator/components/com_easyblog/includes/post/post.php
·
Tuesday, 22 March 2016 01:10
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post