Hi Guys,
I am trying to add a link to gift wrapping option for every product in the shopping cart except the gift wrapping option itself
Have used the example shown in the advanced users guide but this only adds in one link at the top / bottom of the shopping cart, not for each line item.
So far, I have come up with the following...
I know the code above in the block if needs tweaking..
Ideally, I would like to display in the shopping cart under each line item..
If product reference is not equal to giftwrap, show link to gift wrapping product
Many thanks in advance, this forum has saved me from many late nights!
I am trying to add a link to gift wrapping option for every product in the shopping cart except the gift wrapping option itself
Have used the example shown in the advanced users guide but this only adds in one link at the top / bottom of the shopping cart, not for each line item.
So far, I have come up with the following...
Code:
<actinic:block if="%3cactinic%3avariable%20name%3d%22ProductReference%22%20%2f%3e%20%3d%3d%20%27giftwrap%27" > <a href="http://clientelsystems.com/acatalog/gift-wrapping.htm"><span class="giftwrap">Please click here to add Gift Wrapping to your Order for FREE</span></a> </actinic:block>
Ideally, I would like to display in the shopping cart under each line item..
If product reference is not equal to giftwrap, show link to gift wrapping product
Many thanks in advance, this forum has saved me from many late nights!
Comment