woocommerce_order_status_processing not triggered everytime
-
I am working on a system where I need to send orders to another system using the other system API, I have a setup that works for 95% of the orders, but a few orders do not trigger my action hook:
add_action( ‘woocommerce_order_status_processing’, array( $this, ‘new_order_processing’ ),1 );
Is there another hook I should use to ensure that
new_order_processing
is triggered on all new orders and why is the hook not always triggered? (The orders that do not trigger the'woocommerce_order_status_processing'
action **do have** the status processing when looking inside Woocommerce.
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘woocommerce_order_status_processing not triggered everytime’ is closed to new replies.