Auto Hinzufügen oder Entfernen eines Werbegeschenkprodukts aus dem Warenkorb in Woocommerce

Ich betreibe einen WooCommerce-Shop, in dem wir jedem Kunden ein Werbegeschenk (E-Book) geben möchten, das im Warenkorb angezeigt wird, nachdem Sie ein Produkt in den Warenkorb gelegt haben.

Beispiel
Sie legen "product1" in den Warenkorb und der Warenkorb zeigt nun 2 Produkte an. das "product1" und das "freebie". Wenn Sie das Produkt aus dem Warenkorb entfernen, wird das Werbegeschenk wieder entfernt.

Ich habe diesen Code jetzt:

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);
    }
}

Aber es scheint noch nicht ganz zu funktionieren.

Was mache ich falsch?

Jede Hilfe wird sehr geschätzt.

Antworten auf die Frage(2)

Ihre Antwort auf die Frage