Created
April 22, 2021 16:29
-
-
Save Spirecool/00e4beb947d222ffc660423ecedb1219 to your computer and use it in GitHub Desktop.
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
| <?php | |
| add_filter( 'woocommerce_payment_complete_order_status', 'bbloomer_autocomplete_processing_orders', 9999 ); | |
| function bbloomer_autocomplete_processing_orders() { | |
| return 'completed'; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment