I'm trying to customize the notification.shipped.xml.config to display a different message based on the shipping method they chose.... I have only 2 shipping methods.
will this work?
<xsl:choose>
<xsl:when test="count(/root/Order/OrderInfo) > 0">
<xsl:choose>
<xsl:when test="number(/root/Order/ShippingMethodID) =1 ">
============SHOW DETAILS FOR SHIPPING METHOD 1
</xsl:when>
</xsl:otherwise>
============SHOW DETAILS FOR SHIPPING METHOD 2
</xsl:otherwise>
</xsl:choose>
</xsl:when>
</xsl:choose>
any help is appreciated.