Mono Support How to include include blog content in RSS feed instead of Excerpt ? 

Viewed 11478 time(s), 7 post(s), 4/23/2014 2:06:35 PM - by super
4/23/2014 2:06:35 PM
6018 Reputation 709 Total posts

How to include include blog content in RSS feed instead of Excerpt ?

Right now, the rss feed only includes  the 'Excerpt' as blog description but if I want to change it with actual blog content, what to do ?

1
4/24/2014 4:39:12 PM
6018 Reputation 709 Total posts

anyone ?

2
4/25/2014 7:15:30 AM
231 Reputation 38 Total posts

Hi Super,

In the BlogPostList control, you have RssFeedContentSelector property exposed. To enforce having blog post content in the rss feed, you have to set property to the BlogContentSelector.Content.

Regards

3
4/25/2014 7:15:32 AM
231 Reputation 38 Total posts

Hi Super,

In the BlogPostList control, you have RssFeedContentSelector property exposed. To enforce having blog post content in the rss feed, you have to set property to the BlogContentSelector.Content.

Regards

4
4/25/2014 1:19:47 PM
6018 Reputation 709 Total posts

Can you please show me an example, how the property in the blog tag should look like ? also any property to disable "Excerpt" too ?

5
4/28/2014 6:41:50 AM
231 Reputation 38 Total posts

Hi Super,

you can set it in this way:

<MonoX:BlogPostList ID="blogPostList" runat="server" RssEnabled="true" ParseCustomTags="Description" RssFeedContentSelector="Content" />
or in code behind:
blogPostList.RssFeedContentSelector = BlogContentSelector.Content;
Regarding the "Excerpt" disabling, can you specify where you want to disable it, on the blog post insert/edit or in the blog post list view? However, there are no exposed property to disabe it immediatelly.

Regards

6
4/28/2014 1:12:27 PM
6018 Reputation 709 Total posts

I want to disable "Excerpt" in the RSS blog  feed.

7
This is a demo site for MonoX. Please visit Mono Software for more info.