我想更改 来自的woocommerce,状态为'HOLD-ON ' 以'处理' 使用php 。
我已经尝试在functions.php 文件中编写函数但是我失败了。
如何在Woocommerce中自动将订单状态从“保持”更改为“处理”?
答案 0 :(得分:3)
要自动处理订单,您应该尝试以下操作:
add_action( 'woocommerce_thankyou', 'woocommerce_auto_processing_orders');
function woocommerce_auto_processing_orders( $order_id ) {
if ( ! $order_id )
return;
$order = wc_get_order( $order_id );
// If order is "on-hold" update status to "processing"
if( $order->has_status( 'on-hold' ) ) {
$order->update_status( 'processing' );
}
}
代码放在活动子主题(或主题)的function.php文件中。
答案 1 :(得分:0)
add_action('woocommerce_order_status_changed', 'ts_auto_complete_by_payment_method');
function ts_auto_complete_by_payment_method($order_id)
{
if ( ! $order_id ) {
return;
}
global $product;
$order = wc_get_order( $order_id );
if ($order->data['status'] == 'on-hold') {
$payment_method=$order->get_payment_method();
if ($payment_method!="COD") // change payment method
{
$order->update_status( 'processing' );
}}}