Skip to content

Instantly share code, notes, and snippets.

@ncyhere
Created October 2, 2019 03:36
Show Gist options
  • Save ncyhere/f6b0e792a13bf50250a96c9a99c7ea93 to your computer and use it in GitHub Desktop.
Save ncyhere/f6b0e792a13bf50250a96c9a99c7ea93 to your computer and use it in GitHub Desktop.
Auto Complete all WooCommerce orders.
/**
* Auto Complete all WooCommerce orders.
*/
add_action( 'woocommerce_thankyou', 'ncydesign_woocommerce_auto_complete_order' );
function ncydesign_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