Created
June 10, 2025 13:19
-
-
Save xlplugins/3bf5ce725749d331fc18791f0e5422bc to your computer and use it in GitHub Desktop.
Autocomplete Woo order
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
add_filter( 'woocommerce_payment_complete_order_status', 'wc_auto_complete_paid_order', 10, 3 ); | |
function wc_auto_complete_paid_order( $status, $order_id, $order ) { | |
return 'completed'; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment