How do you display a discounted line item price in a dynamic table for Shopify order confirmations?
I’ve followed this article’s instructions, but found that the line item price is displayed as the actual price of the item, so it doesn’t take into account if our sales agents discount an item. Our totals at the bottom of the confirmation are correct, but it’s confusing for customers when they don’t see the actual discounted line item price in the dynamic table.
I’ve setup the data source for the row and have the following four columns. Is there a way to display the discounted price in the PRICE column? Or do I need to include a column that shows the discount amount, which gets calculated in the ITEM TOTAL column?
ITEM
{{ item.product.title }}
QUANTITY
${{ item.quantity|floatformat:0 }}
PRICE
${{ item.price|floatformat:2 }}
ITEM TOTAL
${{ item.line_price|floatformat:2 }}