ребята вот код помогите пжл что изменить
<!-- Шаблон для групп товара -->
<xsl:template match="shop_group" mode="mainGroup">
<div class="mainCategories__item">
<div class="mainItemCategory">
<a href="{url}" class="mainItemCategory__thumb" title="{name}">
<xsl:choose>
<xsl:when test="image_small != ''">
<img src="{dir}{image_small}" alt="{name}"/>
</xsl:when>
<xsl:otherwise>
<img src="/images/default-image.png"/>
</xsl:otherwise>
</xsl:choose>
</a>
<div class="mainItemCategory__body">
<a class="mainItemCategory__name" href="{url}">
<xsl:value-of select="name"/>
</a>
<xsl:if test="description != ''">
<div class="mainItemCategory__description">
<xsl:value-of select="description" disable-output-escaping="yes"/>
</div>
</xsl:if>
</div>
</div>
</div>
</xsl:template>
<!-- Шаблон для групп товара -->
<xsl:template match="shop_group">
<div class="listGroups__item">
<a class="listGroups__link link link_st2" href="{url}">
<xsl:value-of select="name"/>
</a>
</div>
</xsl:template>
<!-- Шаблон выводит рекурсивно ссылки на группы магазина -->
<xsl:template match="shop_group" mode="breadCrumbs">
<xsl:param name="parent_id" select="parent_id"/>
<!-- Store parent id in a variable -->
<xsl:param name="group" select="/shop/shop_group"/>
<xsl:apply-templates select="//shop_group[@id=$parent_id]" mode="breadCrumbs"/>
<xsl:if test="parent_id=0">
<span typeof="v:Breadcrumb">
<a title="{/shop/name}" href="{/shop/url}" hostcms:id="{/shop/@id}" hostcms:field="name" hostcms:entity="shop" class="root" property="v:title" rel="v:url">
<xsl:value-of select="/shop/name"/>
</a>
</span>
</xsl:if>
<i class="fa fa-angle-right"></i>
<span typeof="v:Breadcrumb">
<a title="{name}" href="{url}" hostcms:id="{@id}" hostcms:field="name" hostcms:entity="shop_group" property="v:title" rel="v:url">
<xsl:value-of select="name"/>
</a>
</span>
</xsl:template>