Answer the question
In order to leave comments, you need to log in
How to display additional properties in XSL in HostCMS 6?
I have 3 additional properties for the information system, 1 is a multi-line field, the other is just a string, and the third is a file (picture) how to display them in an xls template? xls tag. images, address, telephone.
Answer the question
In order to leave comments, you need to log in
Because images, not image, it was meant to be a property with multiple values.
<xsl:apply-templates select="property_value[tag_name='images']/file"/>
<xsl:template match="property_value[tag_name='images']/file">
<xsl:value-of select="."/>
</xsl:template>
<xsl:value-of select="property_value[tag_name='adress']/value"/>
<xsl:value-of select="property_value[tag_name='telefon']/value"/>
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question