Overview:
Because the "discounts" portion of quick quote didn't exist when the templates are created, your custom template may not accurately show the line item price.
Solution:
To update this you will need to add a small amount of liquid code to both templates. Locate the original line item subtotal price here:
Just after the last 2 }} symbols but before the </td> add this snippet of code:
{% if line_item.discount != nil %} <div> -{{ line_item.discount.amount | currency }} <div> {{ line_item.discount.reason }} </div> </div>
{% endif %}
It should look like this:
If you have any questions, or if you need any assistance with implementing the code above, please feel free to reach out to us at support@w3trends.com.