Created
April 30, 2014 14:29
-
-
Save nickburne/88732a3486d43c65349f to your computer and use it in GitHub Desktop.
Automatically mark orders as ‘complete’ in WooCommerce
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
add_filter( 'woocommerce_payment_complete_order_status', 'virtual_order_payment_complete_order_status', 10, 2 ); | |
function virtual_order_payment_complete_order_status( $order_status, $order_id ) { | |
$order = new WC_Order( $order_id ); | |
if ( 'processing' == $order_status && | |
( 'on-hold' == $order->status || 'pending' == $order->status || 'failed' == $order->status ) ) { | |
$virtual_order = null; | |
if ( count( $order->get_items() ) > 0 ) { | |
foreach( $order->get_items() as $item ) { | |
if ( 'line_item' == $item['type'] ) { | |
$_product = $order->get_product_from_item( $item ); | |
if ( ! $_product->is_virtual() ) { | |
// once we've found one non-virtual product we know we're done, break out of the loop | |
$virtual_order = false; | |
break; | |
} else { | |
$virtual_order = true; | |
} | |
} | |
} | |
} | |
// virtual order, mark as completed | |
if ( $virtual_order ) { | |
return 'completed'; | |
} | |
} | |
// non-virtual order, return original status | |
return $order_status; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment