Auto-Confirm Orders

You can set your storefront to auto-confirm all or some orders, based on specific liquid rules.

This can be setup in your storefront's superadmin, which you can access via the main admin via the elipses (3-dots) icon in the bottom left.

On the right-hand side of the super admin, you will find an Orders section where you will see the above options available. To simply Confirm all orders, just select the top checkbox. If you want to add rules, you can use the Script field. The most common example is shown here, where if a users selects to pay for their order in store, it will confirm the order. It will also confirm if the total value of the order is $0.

{% if order.custom['pay_in_store'] == 'true' or order.total == 0 %}true{% endif %}

Last updated