diff --git a/themes/aura/locales/ar.default.json b/themes/aura/locales/ar.default.json
index 12ed5ac8..808f3a92 100644
--- a/themes/aura/locales/ar.default.json
+++ b/themes/aura/locales/ar.default.json
@@ -89,7 +89,8 @@
"one_piece_price": "سعر كل قطعة",
"quantity": "الكمية",
"coupon": "كوبون",
- "vat": "الضريبة على القيمة المضافة"
+ "vat": "الضريبة على القيمة المضافة",
+ "free_shipping": "مجاني"
}
},
"snippets": {
diff --git a/themes/aura/locales/en.json b/themes/aura/locales/en.json
index f42fd4db..7d41e7a3 100644
--- a/themes/aura/locales/en.json
+++ b/themes/aura/locales/en.json
@@ -89,7 +89,8 @@
"one_piece_price": "Unit price",
"quantity": "Quantity",
"coupon": "Coupon",
- "vat": "VAT"
+ "vat": "VAT",
+ "free_shipping": "Free"
}
},
"snippets": {
diff --git a/themes/aura/locales/fr.json b/themes/aura/locales/fr.json
index 52b0848b..658de9fa 100644
--- a/themes/aura/locales/fr.json
+++ b/themes/aura/locales/fr.json
@@ -89,7 +89,8 @@
"one_piece_price": "Prix unité",
"quantity": "Quantité",
"coupon": "Coupon",
- "vat": "VAT"
+ "vat": "VAT",
+ "free_shipping": "Gratuite"
}
},
"snippets": {
diff --git a/themes/aura/sections/thankyou.liquid b/themes/aura/sections/thankyou.liquid
index 07efa998..53f349e9 100644
--- a/themes/aura/sections/thankyou.liquid
+++ b/themes/aura/sections/thankyou.liquid
@@ -91,10 +91,14 @@
{%- endif -%}
- {{ 'thankyou.details.shipping_cost' | t }}
+ {{ 'thankyou.details.shipping_cost' | t }}
- {{- order.shippingCost | money -}}
+ {% if order.shippingCost == 0 %}
+ {{ 'thankyou.details.free_shipping' | t }}
+ {% else %}
+ {{ order.shippingCost | money }}
+ {% endif %}
{%- if store.vat > 0 -%}
diff --git a/themes/harmony/locales/ar.default.json b/themes/harmony/locales/ar.default.json
index bf178c6d..a2013f4c 100644
--- a/themes/harmony/locales/ar.default.json
+++ b/themes/harmony/locales/ar.default.json
@@ -88,7 +88,8 @@
"sub_total": "إجمالي قيمة المنتجات",
"quantity": "الكمية",
"coupon": "كوبون",
- "vat": "الضريبة على القيمة المضافة"
+ "vat": "الضريبة على القيمة المضافة",
+ "free_shipping": "مجاني"
}
},
"snippets": {
diff --git a/themes/harmony/locales/en.json b/themes/harmony/locales/en.json
index a156b7c3..37e933c2 100644
--- a/themes/harmony/locales/en.json
+++ b/themes/harmony/locales/en.json
@@ -88,7 +88,8 @@
"sub_total": "Subtotal",
"quantity": "Quantity",
"coupon": "Coupon",
- "vat": "VAT"
+ "vat": "VAT",
+ "free_shipping": "Free"
}
},
"snippets": {
diff --git a/themes/harmony/locales/fr.json b/themes/harmony/locales/fr.json
index b41bdbce..b1e3e400 100644
--- a/themes/harmony/locales/fr.json
+++ b/themes/harmony/locales/fr.json
@@ -88,7 +88,8 @@
"sub_total": "Sous-total",
"quantity": "Quantité",
"coupon": "Coupon",
- "vat": "VAT"
+ "vat": "VAT",
+ "free_shipping": "Gratuite"
}
},
"snippets": {
diff --git a/themes/harmony/sections/thankyou.liquid b/themes/harmony/sections/thankyou.liquid
index b2b508a9..c3ed530d 100644
--- a/themes/harmony/sections/thankyou.liquid
+++ b/themes/harmony/sections/thankyou.liquid
@@ -81,7 +81,11 @@
{%- endif -%}
{{ 'thankyou.details.shipping_cost' | t }}
- {{- order.shippingCost | money -}}
+ {% if order.shippingCost == 0 %}
+ {{ 'thankyou.details.free_shipping' | t }}
+ {% else %}
+ {{ order.shippingCost | money }}
+ {% endif %}
{%- if store.vat > 0 -%}
diff --git a/themes/meraki/locales/ar.default.json b/themes/meraki/locales/ar.default.json
index 231ddc1e..7c5b6c51 100644
--- a/themes/meraki/locales/ar.default.json
+++ b/themes/meraki/locales/ar.default.json
@@ -86,7 +86,8 @@
"sub_total": "إجمالي قيمة المنتجات",
"quantity": "الكمية",
"coupon": "كوبون",
- "vat": "الضريبة على القيمة المضافة"
+ "vat": "الضريبة على القيمة المضافة",
+ "free_shipping": "مجاني"
}
},
"snippets": {
diff --git a/themes/meraki/locales/en.json b/themes/meraki/locales/en.json
index 63171e6a..482f0292 100644
--- a/themes/meraki/locales/en.json
+++ b/themes/meraki/locales/en.json
@@ -86,7 +86,8 @@
"sub_total": "Subtotal",
"quantity": "Quantity",
"coupon": "Coupon",
- "vat": "VAT"
+ "vat": "VAT",
+ "free_shipping": "Free"
}
},
"snippets": {
diff --git a/themes/meraki/locales/fr.json b/themes/meraki/locales/fr.json
index fca90a37..fae6f3a7 100644
--- a/themes/meraki/locales/fr.json
+++ b/themes/meraki/locales/fr.json
@@ -86,7 +86,8 @@
"sub_total": "Sous-total",
"quantity": "Quantité",
"coupon": "Coupon",
- "vat": "VAT"
+ "vat": "VAT",
+ "free_shipping": "Gratuite"
}
},
"snippets": {
diff --git a/themes/meraki/sections/thankyou.liquid b/themes/meraki/sections/thankyou.liquid
index 2660839e..6753368c 100644
--- a/themes/meraki/sections/thankyou.liquid
+++ b/themes/meraki/sections/thankyou.liquid
@@ -85,7 +85,11 @@
{%- endif -%}
{{ 'thankyou.details.shipping_cost' | t }}
- {{- order.shippingCost | money -}}
+ {% if order.shippingCost == 0 %}
+ {{ 'thankyou.details.free_shipping' | t }}
+ {% else %}
+ {{ order.shippingCost | money }}
+ {% endif %}
{%- if store.vat > 0 -%}