Can I change WooCommerce quantity in some specific product?
I have tried:
global $woocommerce;
$items = $woocommerce->cart->get_cart();
To change quantities, see after that code. Here your revisited code:
foreach( WC()->cart->get_cart() as $cart_item_key => $cart_item ) {
$product = $cart_item['data']; // Get an instance of the WC_Product object
echo "<b>".$product->get_title().'</b> <br> Quantity: '.$cart_item['quantity'].'<br>';
echo " Price: ".$product->get_price()."<br>";
}
Updated: Now to change the quantity on specific products, you will need to use this custom function hooked in woocommerce_before_calculate_totals
action hook:
add_action('woocommerce_before_calculate_totals', 'change_cart_item_quantities', 20, 1 );
function change_cart_item_quantities ( $cart ) {
if ( is_admin() && ! defined( 'DOING_AJAX' ) )
return;
if ( did_action( 'woocommerce_before_calculate_totals' ) >= 2 )
return;
// HERE below define your specific products IDs
$specific_ids = array(37, 51);
$new_qty = 1; // New quantity
// Checking cart items
foreach( $cart->get_cart() as $cart_item_key => $cart_item ) {
$product_id = $cart_item['data']->get_id();
// Check for specific product IDs and change quantity
if( in_array( $product_id, $specific_ids ) && $cart_item['quantity'] != $new_qty ){
$cart->set_quantity( $cart_item_key, $new_qty ); // Change quantity
}
}
}
Code goes in function.php file of the active child theme (or active theme).
Tested and works