Ссылку выводит у нас следующая конструкция:
<a href="{/cart/shop/path}{item/fullpath}{item/path}/">
<xsl:value-of disable-output-escaping="yes" select="item/name"/>
</a>
Делаем проверку на модификацию:
<!-- Определяем ссылку -->
<xsl:choose>
<xsl:when test="parent_item/node()">
<a href="{/cart/shop/path}{parent_item/item/fullpath}{parent_item/item/path}/">
<xsl:value-of disable-output-escaping="yes" select="item/name"/>
</a>
</xsl:when>
<xsl:otherwise>
<a href="{/cart/shop/path}{item/fullpath}{item/path}/">
<xsl:value-of disable-output-escaping="yes" select="item/name"/>
</a>
</xsl:otherwise>
</xsl:choose>