How can I set a minimum order value on my online store?

Hi folks,

I would like to set up a minimum order value for my shopify store sokoun.me

It is important to make sure that customers are communicated that “They need to have a minimum order value is 80 EGP in order to checkout”

Have tried some apps but it didnt work as expected. Help is much appreciated

@hanafy Find this file cart.total_price and find below code similar.

{% if cart.total_price > 2499 %}
  
{% else %}
  Uh Oh! You need to spend $25 or more before you can checkout{% endif %}

Not working, is there a specific part of the code that this should be pasted?

Sure, you can set a minimum order value on online stores by using the Cart Lock https://apps.shopify.com/cart-lock app easily. Here is how you can do it:.

  1. Open the app and click on the “Add a new rule” button.
  2. Click “Add a new condition” and select the “Cart subtotal” then put 80 in the “Block if less than” field.
  3. In the “Error message” field, add “You need to have a minimum order value of 80 EGP in order to checkout”.
  4. Save the rule.

Now your customers cannot order less than cart subtotal 80 EGP.