My RSS feed have images in the description. But I want to display them as a separate image.
Can it be done?
Thank you
Hello! Could you clarify what do you mean on "display them as a separate image"?
You can map entire description to image asset and add JS in mapping. In this JS you'll receive entire description in variable "value". In JS select image URL and make "return" to this URL:
codevar imgUrl;
//here is some code to get image url from variable "value"
return imgUrl;/code