2017-06-05 67 views

回答

0

不幸的是,在WooCommerce將商品添加到購物車之前沒有「行動」掛鉤。但是在添加到購物車之前,他們有一個「過濾器」鉤子。這就是我如何使用它:

add_filter('woocommerce_add_cart_item_data', 'woo_custom_add_to_cart'); 
function woo_custom_add_to_cart($cart_item_data) { 
    global $woocommerce; 
    $woocommerce->cart->empty_cart(); 
    // Do nothing with the data and return 
    return $cart_item_data; 
} 
+0

我認爲,這個鉤子將限制車到一個產品,這個問題更多的是1 **最大數量每個產品** – jjj

+1

當您添加的產品後,有一個選項可以將此產品的最大數量添加到購物車。在庫存下有選項「單獨銷售」。 –

相關問題