Test

{% assign free_shipping_alert = 60 | times: 100 %} {% assign cart_total = cart.total_price %} {% assign free_shipping_amount = 90 | times: 100 %} {% assign remaining_amount = free_shipping_amount | minus: cart_total %} -- Opening if that states if we show the alert or not -- {% if cart_total >= free_shipping_alert %} -- Second if that shows how much is missing -- {% if cart_total >= free_shipping_amount %} You qualify for free shipping! {% else %} You need {{ remaining_amount | money }} to qualify for free shipping. -- Close both statements -- {% endif %} {% endif %}