Skip to content

Instantly share code, notes, and snippets.

@lukecav
Forked from woogist/functions.php
Created August 29, 2016 21:24
Show Gist options
  • Save lukecav/0159cd3763bb79cf8c25d61e60244f0d to your computer and use it in GitHub Desktop.
Save lukecav/0159cd3763bb79cf8c25d61e60244f0d to your computer and use it in GitHub Desktop.
Autocomplete all WooCommerce orders
/**
* Auto Complete all WooCommerce orders.
*/
add_action( 'woocommerce_thankyou', 'custom_woocommerce_auto_complete_order' );
function custom_woocommerce_auto_complete_order( $order_id ) {
if ( ! $order_id ) {
return;
}
$order = wc_get_order( $order_id );
$order->update_status( 'completed' );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment