Not working with minimum order amount
-
Trying to use the Woocommerce minimum order amount hook together with WooCommerce Multi-Step Checkout. But it does not work.
The user can order even if the cart is unter the minimum order amount.
The error message comes in step 1 but then the user can go until the last order page and place order.The amount check is here:
add_action( ‘woocommerce_checkout_process’, ‘do_check’ );
add_action( ‘woocommerce_before_cart’ , ‘do_check’ );But I also tried several others, all not working fine:
woocommerce_checkout_process
woocommerce_before_cart
woocommerce_check_cart_items
woocommerce_before_checkout_process
woocommerce_checkout_before_order_review
woocommerce_checkout_order_review
woocommerce_checkout_order_review
woocommerce_before_checkout_form
woocommerce_checkout_processHow can I activate the check for multi step form for the last step (so when clicking the “Place order” button)?
The topic ‘Not working with minimum order amount’ is closed to new replies.