Skip to content

Instantly share code, notes, and snippets.

@tokopress
Created December 4, 2018 01:04
Show Gist options
  • Save tokopress/dedb3b5a727d545c14ea3926e707b86b to your computer and use it in GitHub Desktop.
Save tokopress/dedb3b5a727d545c14ea3926e707b86b to your computer and use it in GitHub Desktop.
COD Payment Gateway - Use "on-hold" status, not "processing"
add_filter( 'woocommerce_cod_process_payment_order_status', 'tokopress_custom_change_cod_payment_order_status' );
function tokopress_custom_change_cod_payment_order_status( $order_status, $order ) {
return 'on-hold';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment