New to Shadows 2.01 and working with it on a dev branch. On the OSEL page there is an optional box for Delivery Notes. How do we display this information in confirmation emails? I can see the infoimation in the admin under Additional Order Information, however would like to see it in the confirmation emails.
Announcement
Collapse
No announcement yet.
Delivery Notes
Collapse
X
-
We have this code on our Order Confirmation Merchant Email to display it. Make sure you have the order custom field set up "order_instructions" :
Code:<mvt:item name="customfields" param="Read_Basket( 'order_instructions', g.order_instructions )" /> <mvt:if expr="NOT ISNULL g.order_instructions"> <table style="border-collapse: collapse; border-spacing: 0; font-size: 16px; color: #676767; border: 1px solid #c7c8d7; width: 690px;"> <tr> <td colspan="3"> <span style="font-weight: bold;">Delivery Notes: </span><br> <span style="font-weight: bold; color: red;">&mvte:global:order_instructions;</span> </td> </tr> </table> </mvt:if>
Highly caffeinated
http://www.coffeehouseexpress.com
Comment