We are trying to add a product link into the notification.receipt.xml so that each item within the receipt has a link that would point to that particular item sold.
Here is what we did:
Found <xsl:value-of select="aspdnsf:GetMLValue(OrderedProductName)" />
And Replaced with <a href="{aspdnsf:ProductLink(/root/OrderItems/lineitem/ProductID, SEName, 'false', '')}"><xsl:value-of select="aspdnsf:GetMLValue(OrderedProductName)" /></a>
The result was that every item had a link but every link was pointing back to the first URL of item sold on the receipt. So, if we sold "Item1", "Item2" and "Item3" to one customer, all 3 links would point back to "Item1"
Can anyone please provide a solution to our issue?