2017-04-06 1 views

答えて

2

フィルタは次の場所に定義されています。

/includes/class-wc-ajax.php 

WooCommerceカートに

add_filter('woocommerce_add_to_cart_validation', 'restrict_only_one_item_in_cart'); 

function restrict_only_one_item_in_cart($cart_item_data) { 

    global $woocommerce; 
    $item_count = $woocommerce->cart->cart_contents_count; 

    if($item_count > 0){ 
     wc_add_notice('Sorry. Only one item is allowed.If you would like to add another, please remove the item in the cart.', 'error'); 
     return false; 
    } 
    return $cart_item_data; 
} 
を単一の項目のみを追加することを許可します
関連する問題