Решение проблемы
В шаблоне "МагазинКаталогТоваров"
В части кода:
<!-- /// Метки для товаров /// -->
<xsl:template match="tags/tag">
<a href="{/shop/path}tag/{tag_path_name}/" class="tag">
<xsl:value-of select="tag_name"/>
</a>
<xsl:if test="position() != last()">,</xsl:if> </xsl:template>
Строку:
<xsl:if test="position() != last()">,</xsl:if> </xsl:template>
Заменить на:
<xsl:if test="position() != last()">,</xsl:if><xsl:text> </xsl:text></xsl:template>