This file contains 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
/* | |
* skip the processing status for selling digital products on WooCommerce. Put this code into your theme functions.php or a plugin. | |
*/ | |
//SalesNudge.io | |
add_filter( 'woocommerce_payment_complete_order_status', 'salesnudge_skip_processing', 10, 1 ); | |
function salesnudge_skip_processing( $stt = '' ){ | |
return 'completed'; | |
} |
NewerOlder