Смотри в шаблоне:
<!-- Шаблон для товара -->
<xsl:template match="item/item" mode="shop">
<div class="block2"><div class="block2_top"><div class="block2_bottom">
<xsl:if test="discount">
<div class="hit"><!-- /--></div>
</xsl:if>
<!-- Ссылка на товар -->
<h2>
<a href="{не могу понять что сюда вставить}" title="{name}">
<xsl:value-of select="property[@xml_name = 'nameg']/value"/>
<xsl:if test="producer/name != ''"> <xsl:value-of disable-output-escaping="yes" select="producer/name"/> </xsl:if>
<xsl:value-of disable-output-escaping="yes" select="name"/>
</a>
</h2>
<!-- Указана малое изображение -->
<xsl:if test="small_image != ''">
<div class="price"><a href="{/shop/path}{fullpath}{path}/">
<img src="{small_image}" alt="{name}" title="{name}"/>
</a></div>
</xsl:if>
<div class="desc">
<p>
<xsl:value-of disable-output-escaping="yes" select="description"/>
</p>
<!--<div class="compare"><input name="apply_compare" value="Сравнить" type="button" onclick="javascript:location='{/shop/path}compare_items/';"/>
</div>-->
</div>
<div id="price_desc">
<!-- Цена -->
<span class="price6"><span id="variant_price"> <xsl:value-of disable-output-escaping="yes" select="price_discount"/> </span> <xsl:value-of disable-output-escaping="yes" select="currency"/> </span>
<!-- Ссылку на добавление в корзины выводим, если:
type = 0 - простой тип товара
type = 1 - электронный товар, при этом остаток на складе больше 0 или -1,
что означает неограниченное количество -->
<xsl:if test="type = 0 or (type = 1 and (eitem_count > 0 or eitem_count = -1))">
<a href="{/shop/path}cart/?action=add&item_id={@id}" onclick="return AddIntoCart('/shop/', {@id}, 1)" style="text-decoration: none;">
<input type="button" class="execute" value="в корзину" />
</a>
</xsl:if>
</div>
</div></div></div>
<!--</td>-->
</xsl:template>