在从处理到待处理创建订单时设置WooCommerce订单状态

问题描述 投票:3回答:2

创建woocommerce订单时,订单的状态为“正在处理”。我需要将默认订单状态更改为“待定”。

我怎样才能做到这一点?

php wordpress woocommerce checkout orders
2个回答
12
投票

默认订单状态由付款方式或支付网关设置。

您可以尝试使用此自定义钩子函数,但它不起作用(因为此挂钩在付款方式和支付网关之前被触发):

add_action( 'woocommerce_checkout_order_processed', 'changing_order_status_before_payment', 10, 3 );
function changing_order_status_before_payment( $order_id, $posted_data, $order ){
    $order->update_status( 'pending' );
}

显然,每种支付方式(和支付网关)都在设置订单状态(取决于支付网关的交易响应)......

对于货到付款方式,可以使用专用过滤器钩子进行调整,请参阅: Change Cash on delivery default order status to "On Hold" instead of "Processing" in Woocommerce

现在,您可以使用woocommerce_thankyou hook更新订单状态:

add_action( 'woocommerce_thankyou', 'woocommerce_thankyou_change_order_status', 10, 1 );
function woocommerce_thankyou_change_order_status( $order_id ){
    if( ! $order_id ) return;

    $order = wc_get_order( $order_id );

    if( $order->get_status() == 'processing' )
        $order->update_status( 'pending' );
}

代码放在活动子主题(或主题)的function.php文件中,或者放在任何插件文件中。

经过测试和工作

注意:每次加载订单接收页面时都会触发钩子woocommerce_thankyou,因此需要谨慎使用... 现在上面的功能只会在第一次更新订单状态。如果客户重新加载页面,IF语句中的条件将不再匹配,并且不会发生任何其他情况。


相关主题:WooCommerce: Auto complete paid Orders (depending on Payment methods)


-3
投票
// Rename order status 'Processing' to 'Order Completed' in admin main view - different hook, different value than the other places
add_filter( 'wc_order_statuses', 'wc_renaming_order_status' );
function wc_renaming_order_status( $order_statuses ) {
    foreach ( $order_statuses as $key => $status ) {
        if ( 'wc-processing' === $key ) 
            $order_statuses['wc-processing'] = _x( 'Order Completed', 'Order status', 'woocommerce' );
    }
    return $order_statuses;
}
© www.soinside.com 2019 - 2024. All rights reserved.