woocommerce_after_cart_item_quantity_update, $cart_item_key, $quantity, $old_quantity, $this
woocommerce_after_cart_item_quantity_update, $cart_item_key, $quantity, $old_quantity, $this
Appears in: woocommerce.11.0.0
Hook Type: action
Displaying hooks found in version: woocommerce.11.0.0do_action('woocommerce_after_cart_item_quantity_update, $cart_item_key, $quantity, $old_quantity, $this') is found 1 times:
- /includes/class-wc-cart.php line 1525
// Update qty. $old_quantity = $this->cart_contents[ $cart_item_key ]['quantity']; $this->cart_contents[ $cart_item_key ]['quantity'] = $quantity; do_action( 'woocommerce_after_cart_item_quantity_update', $cart_item_key, $quantity, $old_quantity, $this ); if ( $refresh_totals ) { $this->calculate_totals(); } /**