Снова сам нашел, собственно кому вдруг надо, код выше вставляете в ТДС под:
$oShop = $Shop_Cart_Controller_Show->getEntity();
в xsl:
выводите список
<xsl:apply-templates select="/shop/deliveries/shop_delivery"/>
шаблон списка:
<xsl:template match="/shop/deliveries/shop_delivery">
<div class="delivery">
<div class="title"><xsl:value-of select="name"/></div>
<xsl:apply-templates select="shop_delivery_condition"/>
</div>
</xsl:template>
<xsl:template match="shop_delivery_condition">
<label>
<input type="radio" name="shop_delivery_condition_id" value="{@id}"/> <span><xsl:value-of select="name"/> <xsl:if test="price > 0"><xsl:text> - </xsl:text><xsl:value-of select="price"/> руб.</xsl:if></span>
</label>
</xsl:template>