Hi there,
I’m trying to customize the ORDER CONFIRMATION to correctly show local VAT, depending on the country of destination. As Shopify seems to always use US-data (Steve Shipper, US) to populate the preview, I can’t test if this working or not as the data from tax_lines is never pulled. Is there any way to populate this with EU data, maybe DE, FR or ES?
For example:
Total excl. PT VAT: 117,08 EUR
PT VAT 23.0%: 26,92 EUR
Total: 144,00 EUR
Thx.
{% for tax_line in tax_lines %}
Total excl. {{ tax_line.title }} {{ tax_line.rate | times: 100 }}%: {{ total_price | minus:tax_line.price | money }}
{{ tax_line.title }} {{ tax_line.rate | times: 100 }}%: {{ tax_line.price | money }}
{% endfor %}