Skip to content

Instantly share code, notes, and snippets.

@wbcomdev
Created May 14, 2021 04:47
Show Gist options
  • Select an option

  • Save wbcomdev/8f999ce0103be5930a1cbc5ea75c78bd to your computer and use it in GitHub Desktop.

Select an option

Save wbcomdev/8f999ce0103be5930a1cbc5ea75c78bd to your computer and use it in GitHub Desktop.
/**
* Auto Complete all WooCommerce orders.
*/
function wb_custom_woocommerce_auto_complete_order( $order_id ) {
if ( ! $order_id ) {
return;
}
$order = wc_get_order( $order_id );
$order->update_status( 'completed' );
}
add_action( 'woocommerce_thankyou', 'wb_custom_woocommerce_auto_complete_order' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment