Created
December 4, 2018 01:04
-
-
Save tokopress/dedb3b5a727d545c14ea3926e707b86b to your computer and use it in GitHub Desktop.
COD Payment Gateway - Use "on-hold" status, not "processing"
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_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