Last active
August 8, 2019 21:53
-
-
Save NickGreen/db16956a7e4a3e7291d2eba69bdd817f to your computer and use it in GitHub Desktop.
don't autocomplete any 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
<?php | |
add_filter( 'woocommerce_payment_complete_order_status', 'my_function', 100, 3 ); | |
function my_function( $new_order_status, $order_id, $order = null ) { | |
if ( $new_order_status == 'completed' ) { | |
$new_order_status = 'processing'; | |
} | |
return $new_order_status; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment