Trying to move the coupon form after "woocommerce_review_order_before_payment" – WordPress
I have tried to move the coupon code to the bottom of the checkout page at hook "woocommerce_review_order_before_payment" with this code: remove_action( 'woocommerce_before_checkout_form', 'woocommerce_checkout_coupon_form', 10 ); add_action( 'woocommerce_review_order_before_payment', 'woocommerce_checkout_coupon_form', 5 ); The coupon code doesn't submit, I even tried this…