I need to change automatically an order status for completed after receiving payment, but only if the order status is “processing”. I found that snippet, what makes orders status completed in every case, but my payments plugins after successful payment changes returns data and changes the order status for “processing”. I would like to change it into “completed” after success and don’t change it if the status isn’t “processing”. The main problem I met is I don’t know how to get the received status order.
Here is my code:
add_filter( 'woocommerce_thankyou', 'update_order_status', 10, 2 );
function update_order_status( $order_id ) {
$order = new WC_Order( $order_id );
$order_status = $order->get_status();
if ('processing' == $order_status) {
$order->update_status( 'completed' );
}
//return $order_status;
}
Edit:
I figured it out already. Here’s the code that works for me:
add_filter( 'woocommerce_thankyou', 'update_order_status', 10, 1 );
function update_order_status( $order_id ) {
if ( !$order_id ){
return;
}
$order = new WC_Order( $order_id );
if ( 'processing' == $order->status) {
$order->update_status( 'completed' );
}
return;
}
Update 1: Compatibility with WooCommerce version 3+
I have changed the answer
Based on: WooCommerce – Auto Complete paid virtual Orders (depending on Payment methods), you will be able to handle also all payment methods in conditionals:
The function
woocommerce_thankyou
is an action. You’re required to useadd_action
function to hook into it. I would recommend changing the priority to20
so that other plugins/code changes may be applied beforeupdate_order_status
.