how to check the cart minimum value and show checkout button only if minimum value in cart

Solved

how to check the cart minimum value and show checkout button only if minimum value in cart

AvidBrio
Shopify Partner
295 17 29

How to check the cart minimum value and show checkout button only if minimum value in cart

 

@ anyone can help

If you find our comment helpful, hit the like button and accept it as a solution.
Want us to implement custom changes in your store? Contact us
Email me directly - [email protected]
Accepted Solution (1)

AvidBrio
Shopify Partner
295 17 29

This is an accepted solution.

i found the solution maybe someone help this

              {% assign cart_totals = cart.total_price | money_without_currency%}
               
              {% if cart_totals  >= '30' %}
               <div class="cart__submit-controls">
                {%- unless section.settings.cart_ajax_enable -%}
                <input type="submit" name="update"
                  class="cart__submit btn btn--secondary"
                  value="{{ 'cart.general.update' | t }}">
                {%- endunless -%}
             
                 
                
                  <input type="submit" name="checkout"
                    class="cart__submit btn btn--small-wide"
                    value="{{ 'cart.general.checkout' | t }}">
                </div>
                {% else %}
                <div class="minimum-order-notice">
                  <span style="color:#990000">You haven’t reached the minimum order value to checkout   </span>
                </div>
              {% endif %}
If you find our comment helpful, hit the like button and accept it as a solution.
Want us to implement custom changes in your store? Contact us
Email me directly - [email protected]

View solution in original post

Replies 3 (3)

AvidBrio
Shopify Partner
295 17 29

This is an accepted solution.

i found the solution maybe someone help this

              {% assign cart_totals = cart.total_price | money_without_currency%}
               
              {% if cart_totals  >= '30' %}
               <div class="cart__submit-controls">
                {%- unless section.settings.cart_ajax_enable -%}
                <input type="submit" name="update"
                  class="cart__submit btn btn--secondary"
                  value="{{ 'cart.general.update' | t }}">
                {%- endunless -%}
             
                 
                
                  <input type="submit" name="checkout"
                    class="cart__submit btn btn--small-wide"
                    value="{{ 'cart.general.checkout' | t }}">
                </div>
                {% else %}
                <div class="minimum-order-notice">
                  <span style="color:#990000">You haven’t reached the minimum order value to checkout   </span>
                </div>
              {% endif %}
If you find our comment helpful, hit the like button and accept it as a solution.
Want us to implement custom changes in your store? Contact us
Email me directly - [email protected]
CanCartel
Visitor
1 0 0

Hi,

Where do I input this code.

Thanks

AvidBrio
Shopify Partner
295 17 29

@CanCartel 

most of theme 
theme/section/product-template .liquid 

else you can find the add to cart button move your cart code inside that condition 


do you need more help please share your theme name - and code snippets 






Each theme has its own architecture and workflow, so I suggest you hire us and we will work out a solution for your theme, email us at [email protected]

If you find our comment helpful, hit the like button and accept it as a solution.
Want us to implement custom changes in your store? Contact us
Email me directly - [email protected]