FROM LOAD - nl_header

X amount until free shipping for different langauges

X amount until free shipping for different langauges

25Artstreet
Bezoeker
2 0 0

Hello,

Recently I have added code so customers can see how much they need to spend for free shipping.

 

{% assign shipping_value = 3000 %}
{% assign cart_total = cart.total_price %}
{% assign shipping_value_left = shipping_value | minus: cart_total %}

<p class="shipping-savings-message">
{% if shipping_value_left > 0 %}
<b> Nog slechts {{ shipping_value_left | money }} tot gratis verzending.</b>
{% else %}
<b>Je hebt gratis verzending!</b>
{% endif %}
</p>



This is the code for Dutch (our main langauge) and it works perfectly. Does anyone know how can I make this code region specific? So I can add it in different langauges?

Thanks in advance!

0 ANTWOORDEN 0