Announcement

Collapse
No announcement yet.

Price Group Discount Display within Merchant Template Email issue

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

    Price Group Discount Display within Merchant Template Email issue

    On the basket page and the through the checkout process within the basket - I have the following code below to display the difference (savings) of the price group discount that has been applied to that specific product (example: Discount: $5.00). We would like this to display on the Merchant template email but the same coding is not working - it is displaying the price after the discount and not the discount. Any suggestions greatly appreciated. Thank you in advance!

    <mvt:if expr="l.settings:discount:display">
    Discount: &mvt:discount:formatted_discount;
    </mvt:if>

    #2
    If you are using the Template Based Emails For Example: Order Confirmation: Customer & Order Confirmation: Merchant
    It might be beneficial to open a ticket by emailing [email protected]
    Add the URL to this forum post to the body of the email.

    This foreach loop displays the discounts.
    <mvt:foreach iterator="discount" array="item:discounts">
    <mvt:if expr="l.settings:discount:display">
    <div class="text-4" style="color:#fa4100; font-family:Arial, sans-serif; min-width:auto !important; font-size:12px; line-height:16px; text-align:left"><em>&mvt:discount:descrip;: &mvt:discount:formatted_discount;</em></div>
    </mvt:if>
    </mvt:foreach>
    Happie Mendenhall
    Support Technician
    Miva, Inc.

    Comment


      #3
      Thank you :)

      Sent the ticket and yeah using the same code of "&mvt:discount:formatted_discount;" and it is not displaying the amount of discount - it displays the Price of product after discount

      Comment

      Working...
      X