在Woocommerce

时间:2017-01-24 16:16:17

标签: php wordpress woocommerce cart product

使用WooCommerce,我想查看是否可以删除特定商品(来自购物车),如果购物车中有其他特定商品。

我的网上商店有一个产品的免费版本,可以为客户提供对网站内容的基本访问权限。付费版本将开放更多内容访问权限。这样,如果免费版本已经在购物车中,并且付费版本被添加到购物车,则免费版本将从购物车中删除。

我尝试查看可能的选项和插件,但大多数都有基于定价和类似情况的条件。

任何帮助都表示赞赏,如果我在到达之前找到答案,我将分享我是如何得到它的。

感谢。

1 个答案:

答案 0 :(得分:6)

是的,例如在 woocommerce_add_to_cart 钩子中附加自定义功能是可以的:

add_action( 'woocommerce_add_to_cart', 'check_product_added_to_cart', 10, 6 );
function check_product_added_to_cart($cart_item_key, $product_id, $quantity, $variation_id, $variation, $cart_item_data) {

    // Set HERE your targeted product ID
    $target_product_id = 31;
    // Set HERE the  product ID to remove
    $item_id_to_remove = 37;

    // Initialising some variables
    $has_item = false;
    $is_product_id = false;

    foreach( WC()->cart->get_cart() as $key => $item ){
        // Check if the item to remove is in cart
        if( $item['product_id'] == $item_id_to_remove ){
            $has_item = true;
            $key_to_remove = $key;
        }

        // Check if we add to cart the targeted product ID
        if( $product_id == $target_product_id ){
            $is_product_id = true;
        }
    }

    if( $has_item && $is_product_id ){
        WC()->cart->remove_cart_item($key_to_remove);

        // Optionaly displaying a notice for the removed item:
        wc_add_notice( __( 'The product "blab bla" has been removed from cart.', 'theme_domain' ), 'notice' );
    }
}

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

此代码经过测试并有效。