Created
February 1, 2021 14:34
-
-
Save dexit/552ccf68ffc4c990b0954b5c2c4b4ab2 to your computer and use it in GitHub Desktop.
[Frontend Snippets] Automatically complete all orders
This file contains hidden or 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
| /** | |
| * 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