WooCommerce で小切手による支払いを「保留中」ステータスではなく「処理中」ステータスにする必要があります。以下のスニペットを試しましたが、効果がないようです。
これが私のコードです:
add_filter( 'woocommerce_payment_complete_order_status', 'sf_wc_autocomplete_paid_orders' );
function sf_wc_autocomplete_paid_orders( $order_status, $order_id ) {
$order = wc_get_order( $order_id );
if ($order->status == 'on-hold') {
return 'processing';
}
return $order_status;
}
どうすればこれを達成できますか?
ありがとう。