达到特定购物车金额时添加促销产品

Tar*_*nuy 5 php wordpress product cart woocommerce

我正在寻找WooCommerce的正确挂钩,因为我需要在达到特定购物车数量时向购物车添加促销产品,例如100个常规单位.

我也使用了钩子,'init'但我不认为这是对的.

这是我的代码:

function add_free_product_to_cart(){
    global $woocommerce;
    $product_id = 2006; 
    $found = false;
    if ( sizeof( $woocommerce->cart->get_cart() ) > 0 ) 
    {
        foreach ( $woocommerce->cart->get_cart() as $cart_item_key => $values ) 
        {
            $_product = $values['data'];
            if ( $_product->id == $product_id )
            $found = true;
        }
        if(!$found)
        {
            $maximum = 100;
            $current = WC()->cart->subtotal;
            if($current > $maximum){
                $woocommerce->cart->add_to_cart( $product_id );
            }           
        }       
    }   
}
add_action( 'woocommerce_add_to_cart', 'add_free_product_to_cart' );
Run Code Online (Sandbox Code Playgroud)

我应该为此目的使用哪个钩子?

或者你能给我一些类似问题的相关链接吗?

谢谢

Loi*_*tec 8

由于您要定位某个购物车金额以在购物车中添加促销产品,您可以使用woocommerce_before_calculate_totals挂钩通过自定义构建功能实现此目的.

如果客户更新购物车(也包含在该自定义功能中),您还必须删除该促销项目.

这是代码:

add_action( 'woocommerce_before_calculate_totals', 'adding_promotional_product', 10, 1 );
function adding_promotional_product( $cart ) {

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

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

    $promo_id = 99; // <=== <=== <=== Set HERE the ID of your promotional product
    $targeted_cart_subtotal = 100; // <=== Set HERE the target cart subtotal
    $has_promo = false;
    $subtotal = 0;

    if ( ! $cart->is_empty() ){

        // Iterating through each item in cart
        foreach ($cart->get_cart() as $item_key => $cart_item ){
            $product_id = version_compare( WC_VERSION, '3.0', '<' ) ? $cart_item['data']->id : $cart_item['data']->get_id();
            // If Promo product is in cart
            if( $product_id == $promo_id ) {
                $has_promo = true;
                $promo_key= $item_key;
            } else {
                // Adding subtotal item to global subtotal
                $subtotal += $cart_item['line_subtotal'];
            }
        }
        // If Promo product is NOT in cart and target subtotal reached, we add it.
        if( ! $has_promo && $subtotal >= $targeted_cart_subtotal ) {
            $cart->add_to_cart( $promo_id );
            // echo 'add';
        // If Promo product is in cart and target subtotal is not reached, we remove it.
        } elseif( $has_promo && $subtotal < $targeted_cart_subtotal ) {
            $cart->remove_cart_item( $promo_key );
        }
    }
}
Run Code Online (Sandbox Code Playgroud)

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

这段代码经过测试和运行.

相关主题:WooCommerce - 自动添加或自动从购物车中删除免费赠品

代码更新时间(2018-10-01)