为了账号安全,请及时绑定邮箱和手机立即绑定

更改包含重复商品的 WooCommerce 订单的状态

更改包含重复商品的 WooCommerce 订单的状态

PHP
ABOUTYOU 2023-07-21 16:05:01
客户支付了一次,但有时商品在订单中显示两次,这是随机发生的。通常每周两次。在这种情况下,我需要一个函数来在发生这种情况时更改订单的状态(例如当订单至少具有重复的商品名称时)。这是我的代码尝试:add_filter( 'woocommerce_cod_process_payment_order_status', 'prefix_filter_wc_complete_order_status', 10, 3 );add_filter( 'woocommerce_payment_complete_order_status', 'prefix_filter_wc_complete_order_status', 10, 3 );function prefix_filter_wc_complete_order_status( $status, $order_id, $order ) {if( ! $order_id ) return;$order = wc_get_order( $order_id );$all_products_id = array();foreach ($order->get_items() as $item_key => $item ){    $item_name  = $item->get_name();        $all_products_id[] = $item_name;}$o_num = count($all_products_id);if($o_num == 1){    return 'processing';    }else{        $standard = 0;    for($i=1;$i<$o_num;$i++){        if($all_products_id[0] == $all_products_id[i]){            $standard++;        }       }    if($standard > 0){        return 'on-hold';       }else{        return 'processing';    }   }当我测试它时,我收到此错误:SyntaxError: Unexpected token < in JSON at position 18任何建议将不胜感激。
查看完整描述

1 回答

?
森林海

TA贡献2011条经验 获得超2个赞

您的代码中存在一些错误和复杂性。此外,您不能使用具有相同函数的两个钩子,因为它们没有相同的参数。


您可以做的是在每个挂钩的单独函数内使用自定义条件函数,如下所示:


// Custom conditional function

function has_duplicated_items( $order ) {

    $order_items = $order->get_items();

    $items_count = (int) count($order_items);

    

    if ( $items_count === 1 ) {

        return false;

    }

    

    $items_names = array();

    

    // Loop through order items

    foreach( $order_items as $tem_id => $item ){

        $product_id  = $item->get_variation_id() > 0 ? $item->get_variation_id() : $item->get_product_id();

        $items_names[$product_id] = $item->get_name();

    }

    

    return absint(count($items_names)) !== $items_count ? true : false;

}


add_filter( 'woocommerce_cod_process_payment_order_status', 'filter_wc_cod_process_payment_order_status', 10, 2 );

function filter_wc_cod_process_payment_order_status( $status, $order ) {

    return has_duplicated_items( $order ) ? 'on-hold' : 'processing';

}


add_filter( 'woocommerce_payment_complete_order_status', 'filter_wc_payment_complete_order_status', 10, 3 );

function filter_wc_payment_complete_order_status( $status, $order_id, $order ) {

    return has_duplicated_items( $order ) ? 'on-hold' : 'processing';

}

这次应该可以解决错误:“SyntaxError: Unexpected token < in JSON at position 18”


代码位于活动子主题(或活动主题)的 function.php 文件中。它应该有效。


查看完整回答
反对 回复 2023-07-21
  • 1 回答
  • 0 关注
  • 140 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信