Skip to content

Instantly share code, notes, and snippets.

@woogist
Created June 16, 2015 07:45
Show Gist options
  • Save woogist/c1d16bc91fee1cc2e876 to your computer and use it in GitHub Desktop.
Save woogist/c1d16bc91fee1cc2e876 to your computer and use it in GitHub Desktop.
/**
* 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 = new WC_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