I have created a product and a product category (see screenshot).
And now I want to look through the fields of that product category.
I already have this code which is working.
<xsl:for-each select="loop[@name='ProductCategories']/item">
<div class="row">
<div class="large-4 columns">
<xsl:value-of select="Ecom.Product.Category.ID" disable-output-escaping="yes"/>
</div>
<div class="large-8 columns">
<xsl:value-of select="Ecom.Product.Category.Name" disable-output-escaping="yes"/>
</div>
</div>
</xsl:for-each>
And this loops through the categories, but how can I loop through the category fields?