mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-05-01 11:52:25 +08:00
https://stackoverflow.com/questions/78486680/autocomplete-woocommerce-paid-orders-for-specific-payment-gateway
7 lines
281 B
Text
7 lines
281 B
Text
add_filter( 'woocommerce_payment_complete_order_status', 'wc_auto_complete_paid_order', 10, 3 );
|
|
function wc_auto_complete_paid_order( $status, $order_id, $order ) {
|
|
if ( $order->get_payment_method() === 'moneris' ) {
|
|
$status = 'completed';
|
|
}
|
|
return $status;
|
|
}
|