简体   繁体   中英

WooCommerce hook "add_to_cart" does not send quantity

I'm subscribing to a woocommerce hook and it's supposed to include the $quantity argument in the callback function but it looks like it's never sent.

add_action('woocommerce_add_to_cart', array(&$this, 'track_cart_add'));

function track_cart_add($cart_item_key, $product_id = 0, $quantity = 1, $variation_id = null, $variation = null, $cart_item_data = null) {
 // code here
}

Quantity is always one and if I print out the arguments, it shows that the function has only one argument which is the first one ($cart_item_key). Am I missing something?

The woocommerce_add_to_cart event is triggered here: http://docs.woothemes.com/wc-apidocs/source-class-WC_Cart.html#948

Have you tried adding the priority and accepted args arguments?

Try this

add_action('woocommerce_add_to_cart', array(&$this, 'track_cart_add'), 10, 6);

function track_cart_add($cart_item_key, $product_id = 0, $quantity = 1, $variation_id = null, $variation = null, $cart_item_data = null) {
 // code here
}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM