skip to Main Content

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…

VIEW QUESTION

Add 'continue shopping' on WooCommerce checkout page before order review

I want to add 'continue shopping' / 'add product' link before order review on checkout page. But I want it to be inline with "Your order" text. See this screenshot: https://ibb.co/47f6vd7 I tried this code: add_action('woocommerce_checkout_order_review','woocommerce_checkout_before_order_review_add_product'); function woocommerce_checkout_before_order_review_add_product(){ $continue_shopping_url =…

VIEW QUESTION
Back To Top
Search