1
我想爲WooCommerce購物車自動添加獎勵產品的腳本。WooCommerce - 自動添加獎勵產品
獎勵產品將添加到購物車中添加特定產品。但是我從來沒有見過任何改進和完整的功能代碼 - 例如自動刪除獎勵物品或從購物車中刪除主要產品。
在這個解決方案,我想出了下面的代碼,具有以下特點:
- 選項
- 多重需要的產品
- 自動添加
- 自動刪除(如果沒有購物車裏需要的商品)
function bonus_product() {
if (is_admin()) return;
//## OPTIONS
$options = (object) array(
'bonus_product_id' => 1891, //bonus product to add
'required_products_id' => array(1873), //at least on of the specific product(s) needs to be represented in the cart
);
//function variables
$cart_items = WC()->cart->get_cart();
$bonus_product_found = false;
$required_product_found = false;
//check if the cart is not empty
if(sizeof($cart_items) > 0) {
//checking for required products. loop through the cart items
foreach ($cart_items as $key => $item) {
//bonus product already in the cart?
if($item['product_id'] == $options->bonus_product_id) {
$bonus_product_found = true;
}
//one of required products in the cart?
if(in_array($item['product_id'], $options->required_products_id)) {
$required_product_found = true;
}
}
//adding/removing bonus product
//add bonus product to the cart
if(!$bonus_product_found && $required_product_found) {
WC()->cart->add_to_cart($options->bonus_product_id);
}
//remove bonus product from the cart if none of required items is in the cart
if($bonus_product_found && !$required_product_found) {
$cart = WC()->instance()->cart;
$cart_id = $cart->generate_cart_id($options->bonus_product_id);
$cart_item_id = $cart->find_product_in_cart($cart_id);
$cart->set_quantity($cart_item_id, 0);
}
}
}
add_action('init', 'bonus_product');
謝謝。這很棒! –
@the_ousek如果有效,請接受答案。 – Sark