在woocommerce中更改特定产品的购物车项目数量

时间:2022-10-10 07:22:30

Can I change WooCommerce quantity in some specific product?

我可以在某些特定产品中更改WooCommerce数量吗?

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?

如何在购物车中获取特定产品ID?

1 个解决方案

#1


4  

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:

更新:现在要更改特定产品的数量,您需要使用挂钩在woocommerce_before_calculate_totals动作钩子中的此自定义函数:

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;

    // 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).

代码位于活动子主题(或活动主题)的function.php文件中。

Tested and works

经过测试和工作

#1


4  

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:

更新:现在要更改特定产品的数量,您需要使用挂钩在woocommerce_before_calculate_totals动作钩子中的此自定义函数:

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;

    // 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).

代码位于活动子主题(或活动主题)的function.php文件中。

Tested and works

经过测试和工作