Skip to content

Instantly share code, notes, and snippets.

@tuongpgjz
tuongpgjz / auto-complete-order.php
Last active March 4, 2021 17:18
Auto complete WooCommerce order after paid
/*
* 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';
}