Change the cart item quantity for specific products in woocommerce

后端 未结 1 1014
独厮守ぢ
独厮守ぢ 2020-12-18 07:26

Can I change WooCommerce quantity in some specific product?

I have tried:

global $woocommerce;
    $items = $woocommerce->cart->get_cart();
           


        
相关标签:
1条回答
  • 2020-12-18 07:40

    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

    0 讨论(0)
提交回复
热议问题