Наложение блоков в ИМ

#
Re: Наложение блоков в ИМ
Не в этом ли месте:

<!-- /// Метки для товаров /// -->
          <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>&#xA0;</xsl:template>
          
          
#
Re: Наложение блоков в ИМ
Решение проблемы
В шаблоне "МагазинКаталогТоваров"
В части кода:
<!-- /// Метки для товаров /// -->
         <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>&#xA0;</xsl:template>

Строку:
<xsl:if test="position() != last()">,</xsl:if>&#xA0;</xsl:template>

Заменить на:
<xsl:if test="position() != last()">,</xsl:if><xsl:text> </xsl:text></xsl:template>
Авторизация