function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
__sandra____sandra__ 

Force.com Site RSS feed : Problem displaying html

Hello,

 

I am trynig to reate rss feeds for my foce.com sites.

 

the mapping is :

 

ft:"Latest articles", et:"<a href=/Art?id="+Id+">"+Name+"</a>", ec: "Description : "+Description__c, ea:"Created by Administrator"

 

 

The problem is , when I display the rss on the navigator, I have got the value of the "et" param displayed as it is :

 

<a href=/Art?id=9342100>My Arcticle</a>

 

 

I tried to add  ect: html to my mapping, but I have got the error : You cannot use selected query fields to specify feed parameter entry content type

 

 

 

am i missing something? thank you!

 

 

 

Best Answer chosen by Admin (Salesforce Developers) 
__sandra____sandra__

I found the answer myself!!

 

il order to specify a url for the entry, you should do it by using the "el" parameter

 

here is how it worked for me :

 

 

ft:"Latest artices", et:Name, ec: "Description : "+Description__c, ea:"Created by Webmaster", ect : "html", el: "/mysite/Art?id="+Id