Hello @kamm0 ,
Greetings from the Store Watchers Support Team! Happy to help you today.
Go to Online Store → Actions → Edit code. Then find your cart template.
In your cart template file, look for the checkout button code and wrap it with an if condition similar to the one below to hide the button for orders below 500.
{% if cart.total_price < 500 %}
// Your checkout button code here.
{% endif %}
You can also optionally add a custom message if the order is below 500.
{% unless cart.total_price < 500 %}
Minimum order is 500
{% endunless %}
Let me know if need further assistance
Regards,
Store Watchers Support Team
