Actions after export
1 2 3 4 5 |
// Update order status with comment add_action('woe_order_exported', function ($order_id) { $order = new WC_Order($order_id); $order->update_status('completed', 'Exported !'); } ); |
1 2 3 4 5 |
// Update order status with comment add_action('woe_order_exported', function ($order_id) { $order = new WC_Order($order_id); $order->update_status('completed', 'Exported !'); } ); |