【发布时间】:2023-12-31 19:35:01
【问题描述】:
这里的想法是,当订单以“快递”作为运输方式进入时,订单状态将更新为待处理。
因为我有一些不同的“快递”运输方式费率,我认为通过使用stristr() 来查看'express' 一词是否出现在格式化的运输方式标题中的任何位置。但我似乎错过了一些东西,因为我什么也没得到。
我如何检查订单运输方式是否为“快递”以便能够更新订单状态?
这是我的代码:
add_action( 'woocommerce_thankyou', 'express_orders_4865', 10, 1 );
function express_orders_4865( $order_id ) {
global $woocommerce;
$order = new WC_Order( $order_id );
$shipping_method = $order->get_shipping_method();
if (stristr($shipping_method, 'express') === TRUE) {
$order->update_status('on-hold');
} else {
return;
}
}
编辑------------------------------ -------------
对于使用 Woocommerce Table Rate Shipping 的任何人,get_method_id 返回表费率 id,所以我使用 get_method_title 代替如下,如果有更好的方法请评论...
add_action( 'woocommerce_thankyou', 'express_shipping_update_order_status', 10, 1 );
function express_shipping_update_order_status( $order_id ) {
if ( ! $order_id ) return;
$search = 'Express'; // The needle to search in the shipping method ID
// Get an instance of the WC_Order object
$order = wc_get_order( $order_id );
// Get the WC_Order_Item_Shipping object data
foreach($order->get_shipping_methods() as $shipping_item ){
// When "express delivery" method is used, we change the order to "on-hold" status
if( strpos( $shipping_item->get_method_title(), $search ) !== false ){
$order->update_status('on-hold');
break;
}
}
}
【问题讨论】:
-
写入调试 $shipping_method 的值是什么。
标签: php wordpress woocommerce shipping orders