允许根据 WooCommerce 中的购物车总数将特定产品添加到购物车

Allow add to cart for specific products based on cart total in WooCommerce

在 woocommerce 中,我试图找到一种方法,仅当达到特定的购物车总金额时才允许将产品添加到购物车。

示例: 我们想以 1 美元 的价格出售保险杠贴纸,但前提是用户已经拥有 25 美元购物车中已有 件其他产品。这类似于亚马逊的 "add on" 功能。但是我找不到类似的 WooCommerce 插件或功能。

我已经尝试了一些代码但没有成功...任何帮助将不胜感激。

可以使用挂接到 woocommerce_add_to_cart_validation 过滤器挂钩的自定义函数来完成,您将在其中定义:

  • 一个产品 ID(或多个产品 ID)。
  • 要达到的阈值购物车数量。

它将避免将那些定义的产品添加到购物车(显示自定义通知),直到达到特定的购物车数量。

代码:

add_filter( 'woocommerce_add_to_cart_validation', 'wc_add_on_feature', 20, 3 );
function wc_add_on_feature( $passed, $product_id, $quantity ) {

    // HERE define one or many products IDs in this array
    $products_ids = array( 37, 27 );

    // HERE define the minimal cart amount that need to be reached
    $amount_threshold = 25;

    // Total amount of items in the cart after discounts
    $cart_amount = WC()->cart->get_cart_contents_total();

    // The condition
    if( $cart_amount < $amount_threshold && in_array( $product_id, $products_ids ) ){
        $passed = false;
        $text_notice = __( "Cart amount need to be up to  in order to add this product", "woocommerce" );
        wc_add_notice( $text_notice, 'error' );
    }
    return $passed;
}

代码进入您的活动子主题(活动主题)的 function.php 文件。

已测试并有效。