我需要通过检查“处理”状态而不是“暂停”状态来进行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;
}
我怎样才能做到这一点?
感谢。
答案 0 :(得分:9)
以下是您在 woocommerce_thankyou
挂钩中看到的功能:
add_action( 'woocommerce_thankyou', 'cheque_payment_method_order_status_to_processing', 10, 1 );
function cheque_payment_method_order_status_to_processing( $order_id ) {
if ( ! $order_id )
return;
$order = wc_get_order( $order_id );
// Updating order status to processing for orders delivered with Cheque payment methods.
if ( get_post_meta($order->id, '_payment_method', true) == 'cheque' )
$order->update_status( 'processing' );
}
此代码位于活动子主题(或主题)的function.php文件中或任何插件文件中。
这是经过测试和运作的。
相关主题:WooCommerce: Auto complete paid Orders (depending on Payment methods)
答案 1 :(得分:0)
我不想使用谢谢过滤器,以防在上一步将订单更改为所需状态之前将订单设置为保留在过滤器中(在我的情况下是自定义状态,在您的情况下是处理中)。所以我在Check网关中使用了过滤器:
add_filter( 'woocommerce_cheque_process_payment_order_status', 'myplugin_change_order_to_agent_processing', 10, 1 );
function myplugin_change_order_to_agent_processing($status){
return 'agent-processing';
}
我希望这可以帮助其他人知道还有另一种选择。
答案 2 :(得分:0)
LoicTheAztec的先前答案已过时,并给出了有关直接在订单对象上访问对象字段的错误。
正确的代码应
add_action( 'woocommerce_thankyou', 'cheque_payment_method_order_status_to_processing', 10, 1 );
function cheque_payment_method_order_status_to_processing( $order_id ) {
if ( ! $order_id )
return;
$order = wc_get_order( $order_id );
// Updating order status to processing for orders delivered with Cheque payment methods.
if ( get_post_meta($order->get_id(), '_payment_method', true) == 'cheque' )
$order->update_status( 'processing' );
}