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 文件中。它应该有效。
- 1 回答
- 0 关注
- 140 浏览
添加回答
举报