Skip to content

Instantly share code, notes, and snippets.

@NickGreen
Last active August 8, 2019 21:53
Show Gist options
  • Save NickGreen/db16956a7e4a3e7291d2eba69bdd817f to your computer and use it in GitHub Desktop.
Save NickGreen/db16956a7e4a3e7291d2eba69bdd817f to your computer and use it in GitHub Desktop.
don't autocomplete any orders
<?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