Created
July 4, 2016 20:38
-
-
Save jessepearson/33f383bb3ea33069822817cfb1da4258 to your computer and use it in GitHub Desktop.
Auto Complete all WooCommerce virtual orders
This file contains 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
<?php // only copy this line if needed | |
/** | |
* Auto Complete all WooCommerce virtual orders. | |
* | |
* @param int $order_id The order ID to check | |
* @return void | |
*/ | |
function custom_woocommerce_auto_complete_virtual_orders( $order_id ) { | |
// if there is no order id, exit | |
if ( ! $order_id ) { | |
return; | |
} | |
// get the order and its exit | |
$order = wc_get_order( $order_id ); | |
$items = $order->get_items(); | |
// if there are no items, exit | |
if ( 0 >= count( $items ) ) { | |
return; | |
} | |
// go through each item | |
foreach ( $items as $item ) { | |
// if it is a variation | |
if ( '0' != $item['variation_id'] ) { | |
// make a product based upon variation | |
$product = new WC_Product( $item['variation_id'] ); | |
} else { | |
// else make a product off of the product id | |
$product = new WC_Product( $item['product_id'] ); | |
} | |
// if the product isn't virtual, exit | |
if ( ! $product->is_virtual() ) { | |
return; | |
} | |
} | |
/* | |
* If we made it this far, then all of our items are virual | |
* We set the order to completed. | |
*/ | |
$order->update_status( 'completed' ); | |
} | |
add_action( 'woocommerce_thankyou', 'custom_woocommerce_auto_complete_virtual_orders' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks for this. Since the update yesterday, it stopped working the fix for me was to replace
if ( '0' != $item['variation_id'] )
with
if (isset( '$item['variation_id'] ))
I hope you don't mind, I forked you and submitted the change.