Search code examples
phpwordpresswoocommercehook-woocommerce

Trying to move the coupon form after "woocommerce_review_order_before_payment"


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 code and it didn't solved the issue, does anyone know how to work with it?

Thanks


Solution

  • I have solved it by moving the coupon code with gift card field into the table and it worked