Please help me I need to create the same progress bar and should be working within the cart page (should not need to reload again and again) and it should be in (£) here is what I have done so far please help me
{% if cart.total_price <= 10000 %}
{% assign barvalue1 = cart.total_price %}
{% assign barvalue2 = 0 %}
{% assign barvalue3 = 0 %}
{% capture my_variable55 %}You are just {{10000 | minus: cart.total_price | money}} away from free shipping{% endcapture %}
{% elsif cart.total_price <= 25000 %}
{% assign barvalue1 = 10000 %}
{% assign barvalue2 = cart.total_price %}
{% assign barvalue3 = 0 %}
{% capture my_variable55 %}You are just {{25000 | minus: cart.total_price | money}} away from 20% Discount{% endcapture %}
{% elsif cart.total_price <= 45000 %}
{% assign barvalue1 = 10000 %}
{% assign barvalue2 = 25000 %}
{% assign barvalue3 = cart.total_price %}
{% capture my_variable55 %}You are just {{45000 | minus: cart.total_price | money}} away from 25% Discount{% endcapture %}
{% else %}
{% assign barvalue1 = 10000 %}
{% assign barvalue2 = 25000 %}
{% assign barvalue3 = 45000 %}
{% endif %}

