DISABLE OUTPUTING - Use this when HTML Code is Showing rather than the Content when writing a Macro
Issue: I am trying to write out an Image and some text from Content in a Macro, but hte HTML is showing
DO THIS:
<xsl:variable name="getimg" select="$currentPage/caseStudyImage"/>
<div id="casestudyimg1">
<xsl:value-of select="$getimg" disable-output-escaping="yes"/>
</div>
INSTEAD OF THIS:
<xsl:variable name="getimg" select="$currentPage/caseStudyImage"/>
<div id="casestudyimg1">
<xsl:value-of select="$getimg" />
</div>
DO THIS:
<xsl:variable name="getimg" select="$currentPage/caseStudyImage"/>
<div id="casestudyimg1">
<xsl:value-of select="$getimg" disable-output-escaping="yes"/>
</div>
INSTEAD OF THIS:
<xsl:variable name="getimg" select="$currentPage/caseStudyImage"/>
<div id="casestudyimg1">
<xsl:value-of select="$getimg" />
</div>
Comments
Post a Comment