简体   繁体   English

在Woocommerce中自动添加或删除购物车中的免费赠品

[英]Auto add or remove a freebie product from cart in Woocommerce

I'm operating a WooCommerce shop, where we'd like to give every customer a freebie (e-book) that will show in the basket, after you have added a product to the basket obvious. 我正在经营一家WooCommerce商店,我们希望给每位顾客提供免费赠品(电子书),这些商品将在购物篮中显示出来之后,显而易见。

Example: 例:
You add "product1" to the basket, and the basket will now show 2 products. 您将“product1”添加到购物篮中,购物篮现在将显示2个产品。 the "product1" and the "freebie". “product1”和“freebie”。 When you remove the product from the basket, the freebie will be removed again. 当您从篮子中取出产品时,将再次移除免费赠品。

I got this code for now: 我现在得到这个代码:

add_action( 'woocommerce_add_to_cart', 'check_freebie_exists', 10, 6 );
function check_freebie_exists($cart_item_key, $product_id, $quantity, $variation_id, $variation, $cart_item_data) {
    if($product_id == 1234) { // obviously replace this with the product that triggers the freebie
        /* or you could use
        if(has_term($cat_id, 'product_cat', $product_id)) { to check if a product is in a particular product_cat
        or you could check anything else related to the product
        */
        $hasfreebie = false;
        // loop through the cart to check the freebie is not already there
        global $woocommerce;
        $cart = $woocommerce->cart->get_cart();
        foreach($cart as $key => $values) {
            if($values['data']->id == $your_freebie_product_id) {
                $hasfreebie = true;
                break;
            }
        }
        if(!$hasfreebie) {
            $woocommerce->cart->add_to_cart($your_freebie_product_id);
        }
    }
}

add_action( 'woocommerce_cart_item_removed', 'remove_freebie', 10, 2 );
function remove_freebie( $cart_item_key, $cart ) {
    $hasmaster = false;
    $freebiekey = NULL;
    foreach($cart as $key => $values) {
        if($values['data']->id == 1234) { // check that we have the product that should trigger the freebie
            $hasmaster = true;
        } elseif($values['data']->id == $your_freebie_product_id) {
            $freebiekey = $key;
        }
    }
    if(!$hasmaster && $freebiekey) {
        $cart->remove_cart_item($freebiekey);
    }
}

But it doesn't seem to be working quite yet. 但它似乎还没有起作用。

What I am doing wrong? 我做错了什么?

Any help will be really appreciated. 任何帮助将非常感激。

Update 2 - October 2018 - Improved and enhanced code (Completely revisited) 更新2 - 2018年10月 - 改进和增强的代码(完全重新访问)

The following code will add a freebie product on first add to cart just once. 以下代码将首次添加到购物车时添加免费赠品。 If all other cart items are removed, the freebie item will be removed too: 如果删除了所有其他购物车商品,免费赠品也将被删除:

add_action( 'woocommerce_before_calculate_totals', 'add_remove_freebie', 50, 1 );
function add_remove_freebie( $cart ) {

    if ( is_admin() && ! defined( 'DOING_AJAX' ) )
        return;

    if ( did_action( 'woocommerce_before_calculate_totals' ) >= 2 )
        return;

    $freebie_id = 70; // <== HERE set the freebie product ID
    $has_others = false;

    // Loop through cart items
    foreach( $cart->get_cart() as $cart_item_key => $cart_item ) {
        // Added Woocommerce compatibility version
        $product_id = version_compare( WC_VERSION, '3.0', '<' ) ? $cart_item['data']->id : $cart_item['data']->get_id();

        if( $product_id == $freebie_id ) {
            // Freebie is in cart
            $freebie_key = $cart_item_key;
        } else {
            // Other items are in cart
            $has_others = true;
        }
    }
    // If freebie product is alone in cart we remove it
    if( ! $has_others && isset( $freebie_key ) ){
        $cart->remove_cart_item( $freebie_key );
    } elseif ( $has_others && ! isset( $freebie_key ) ) {
        $cart->add_to_cart($freebie_id);
    }
}

Code goes in function.php file of your active child theme (or active theme) . 代码位于活动子主题(或活动主题)的function.php文件中 Tested and works. 经过测试和工作。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM