Discuss and resolve questions on Liquid, JavaScript, themes, sales channels, and site speed enhancements.
We're moving the community! Starting July 7, the current community will be read-only for approx. 2 weeks. You can browse content, but posting will be temporarily unavailable. Learn more
Hello, our store is set to be exc vat on the prices shown, but then we need the confirmation emails to correctly show total paid inc vat.
The totals on the confirmation email add up correctly to the right figure including tax and shipping, but the text reads "exc vat" after the price.
The email code :
<p><span>Total</span></p>
</td>
<td class="subtotal-line__value">
<strong>{{ total_price | money_with_currency }}</strong>
</td>
</tr>
How can I insert just the final price and code "inc vat" in to the html, or how do i change the above code so that it reads "£price inc vat"
Many thanks, the below s
Solved! Go to the solution
This is an accepted solution.
Sorted, change the variabe to {{ total_price | money }}, this removes any mention of tax from the string.
This is an accepted solution.
Sorted, change the variabe to {{ total_price | money }}, this removes any mention of tax from the string.