Home › Forums › WoodMart support forum › Move position of coupon form on checkout page › Reply To: Move position of coupon form on checkout page
November 23, 2023 at 12:25 pm
#514881
Luke Nielsen
Keymaster
Hello,
Here is an example on how to remove it from the Checkout page:
add_action( 'woocommerce_checkout_billing', function () {
remove_action( 'woocommerce_checkout_billing', array( XTS\Modules\Shipping_Progress_Bar\Main::get_instance(), 'render_shipping_progress_bar_with_wrapper' ) );
}, 5 );
Based on this code you can add action that suits you.
Kind Regards