Woocommerce 3中检查产品是否已经在购物车中的条件函数

时间:2018-10-12 15:25:04

标签: php wordpress woocommerce advanced-custom-fields cart

此处WooCommerce - Check if item's are already in cart提供的解决方案非常完美。这是功能代码:

function woo_in_cart($arr_product_id) {
    global $woocommerce;
    $cartarray=array();

    foreach($woocommerce->cart->get_cart() as $key => $val ) {
       $_product = $val['product_id'];
       array_push($cartarray,$_product);
    }

    if (!empty($cartarray)) {
       $result = array_intersect($cartarray,$arr_product_id);
    }

    if (!empty($result)) {
       return true;
    } else {
       return false;
    };

}

用法

  $my_products_ids_array = array(22,23,465);
if (woo_in_cart($my_products_ids_array)) {
  echo 'ohh yeah there some of that products in!';
}else {
  echo 'no matching products :(';
}

但是我需要使用if(in_array),但是到目前为止没有运气。我做错了什么?

$my_products_ids_array = array("69286", "69287",);
if (in_array("69286", $my_products_ids_array)) {
    echo '<p>' . the_field ( 'cart_field', 'option' ) . '</p>';
}
if (in_array("69287", $my_products_ids_array)) {
    echo '<p>' . the_field ( 'cart_field-1', 'option' ) . '</p>';
}

谢谢

1 个答案:

答案 0 :(得分:3)

您的主要功能代码已过时。

对于高级自定义字段(ACF):

  • 您需要使用get_field() 返回字段值),而不要使用the_field() echo < / strong>字段值)
  • 您可能需要在get_field('the_slug', $product_id )中将产品ID作为第二个参数添加。

所以尝试:

function is_in_cart( $ids ) {
    // Initialise
    $found = false;

    // Loop Through cart items
    foreach( WC()->cart->get_cart() as $cart_item ) {
        // For an array of product IDS
        if( is_array($ids) && ( in_array( $cart_item['product_id'], $ids ) || in_array( $cart_item['variation_id'], $ids ) ) ){
            $found = true;
            break;
        }
        // For a unique product ID (integer or string value)
        elseif( ! is_array($ids) && ( $ids == $cart_item['product_id'] || $ids == $cart_item['variation_id'] ) ){
            $found = true;
            break;
        }
    }

    return $found;
}

代码进入您的活动子主题(或活动主题)的function.php文件中。经过测试,可以正常工作。

  

自定义条件函数is_in_cart( $ids )接受字符串(唯一产品ID)或产品ID数组。


您重新使用的方式 (ACF get_field可能需要一个帖子ID(产品ID)):

if ( is_in_cart( "69286" ) ) {
    echo '<p>' . get_field ( 'cart_field' ) . '</p>'; // or get_field ( 'cart_field', "69286" )
}
if ( is_in_cart( "69287" ) ) {
    echo '<p>' . get_field ( 'cart_field-1' ) . '</p>'; // or get_field ( 'cart_field', "69287" )
}