Hi guys,
I have been trying to add extra information against each product and ideally make it available in the customer order email as well.
I have set up a Product Variable called DeliveryPeriodName which is available under each product's properties and can be selected from a list. I have allocated the delivery period to the product and add the the following code into the 'Cart Product Details' layout, between <Actinic:XMLTEMPLATE NAME="ProductLine"> and its equivalent closing XML tag: </Actinic:XMLTEMPLATE>:
In the shopping chart the delivery period does show up against the product but it is always January , how can I get it pull the correct delivery period from the product, it is set to March in this case?
It would also be useful to make this available in the email as well, I was going to look at 'extra fields into customer email' (Page 148 AUG) but have tried that yet, thought it would be a similar process.
Test is found at this URL Test site, best products are March and April, have not gone through all of them yet.
Any thoughts would be appreciated, thanks
I have been trying to add extra information against each product and ideally make it available in the customer order email as well.
I have set up a Product Variable called DeliveryPeriodName which is available under each product's properties and can be selected from a list. I have allocated the delivery period to the product and add the the following code into the 'Cart Product Details' layout, between <Actinic:XMLTEMPLATE NAME="ProductLine"> and its equivalent closing XML tag: </Actinic:XMLTEMPLATE>:
<td width="60" align="right">
<actinic:block if="%3cactinic%3avariable%20name%3d%22DeliveryPeriodName%22%20%2f%3e%20%21%3d%20%22%22" >
<actinic:variable name="DeliveryPeriodName" />
</actinic:block>
</td>
<actinic:block if="%3cactinic%3avariable%20name%3d%22DeliveryPeriodName%22%20%2f%3e%20%21%3d%20%22%22" >
<actinic:variable name="DeliveryPeriodName" />
</actinic:block>
</td>
It would also be useful to make this available in the email as well, I was going to look at 'extra fields into customer email' (Page 148 AUG) but have tried that yet, thought it would be a similar process.
Test is found at this URL Test site, best products are March and April, have not gone through all of them yet.
Any thoughts would be appreciated, thanks
Comment