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: https://docs.woothemes.com/wc-apidocs/source-class-WC_Cart.html#948
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘WooCommerce hook “add_to_cart” does not send quantity’ is closed to new replies.