After your woocommerce_order_action_ completes
-
I’ve added a custom order action example
function dothisthing( $order ) { //Do something } add_action( 'woocommerce_order_action_dosomething', 'dothisthing' );
It all works as intended. My question is: when I edit an order and click ANY order action, is there any way I can call a final function to run?
Example if I click “Send New order notification” once that completes I need to run function X – but I need to do this for all the order actions. Possible?
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘After your woocommerce_order_action_ completes’ is closed to new replies.