From 7e687d57350bb886d6b110aed009706080b8b618 Mon Sep 17 00:00:00 2001 From: Henri Hulski Date: Wed, 16 Mar 2022 17:05:53 +0100 Subject: [PATCH] fix: change order of tax and shipping totals in order --- .../templates/shop/includes/order_totals.html | 20 +++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/cartridge/shop/templates/shop/includes/order_totals.html b/cartridge/shop/templates/shop/includes/order_totals.html index ffe3cf4a2..f90da6935 100644 --- a/cartridge/shop/templates/shop/includes/order_totals.html +++ b/cartridge/shop/templates/shop/includes/order_totals.html @@ -14,26 +14,26 @@ {{ discount_total|currency }} {% endif %} - {% if shipping_type or shipping_total %} + {% if tax_total %}
{{ shipping_total|currency }} + {{ tax_total|currency }}
{% endif %} - {% if tax_total %} + {% if shipping_type or shipping_total %}
{{ tax_total|currency }} + {{ shipping_total|currency }}
{% endif %}
{{ order_total|currency }}