Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Change the cart item quantity for specific products in woocommerce

Can I change WooCommerce quantity in some specific product?

I have tried:

global $woocommerce;
    $items = $woocommerce->cart->get_cart();
    foreach($items as $item => $values) { 
        $_product = $values['data']->post; 
        echo "<b>".$_product->post_title.'</b>  <br> Quantity: '.$values['quantity'].'<br>'; 
        $price = get_post_meta($values['product_id'] , '_price', true);
        echo "  Price: ".$price."<br>";
    } 

How to get specific product Id in cart?

like image 916
lalaland Avatar asked Feb 21 '18 03:02

lalaland


People also ask

How do I add quantity to cart in WooCommerce?

Cart quantity settings: Go to WooCommerce > Settings > Advance Product Quantity > and navigate to “Cart Quantities”. From here you can, Limit min/max cart quantity.


1 Answers

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

like image 171
LoicTheAztec Avatar answered Nov 14 '22 23:11

LoicTheAztec