Announcement

Collapse
No announcement yet.

Delivery Notes

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Delivery Notes

    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.

    #2
    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>
    order.png
    Highly caffeinated
    http://www.coffeehouseexpress.com

    Comment


      #3
      Thanks Jim. Works perfectly. I appreciate your help.

      Greg

      Comment


        #4
        No Problem!
        Highly caffeinated
        http://www.coffeehouseexpress.com

        Comment

        Working...
        X