Woocommerce 清空购物车并在特定页面模板上添加新产品

发布于 2025-01-13 02:31:38 字数 738 浏览 0 评论 0原文

我想在添加新产品之前清空购物车,它可以使用以下代码:

add_filter( 'woocommerce_add_cart_item_data', 'wdm_empty_cart', 10,  3);

function wdm_empty_cart( $cart_item_data, $product_id, $variation_id ) {

    global $woocommerce;
    $woocommerce->cart->empty_cart();

    // Do nothing with the data and return
    return $cart_item_data;
}

现在我需要在特定的页面模板上执行此操作。这可能吗?

我试过了,但没用

add_filter( 'woocommerce_add_cart_item_data', 'wdm_empty_cart', 10,  3);

function wdm_empty_cart( $cart_item_data, $product_id, $variation_id ) {

    global $woocommerce;
    if (is_page_template('templates/checkout.php')){
        $woocommerce->cart->empty_cart();
    }
    
    return $cart_item_data;
}

I want to empty the cart before adding a new product and it works with this code:

add_filter( 'woocommerce_add_cart_item_data', 'wdm_empty_cart', 10,  3);

function wdm_empty_cart( $cart_item_data, $product_id, $variation_id ) {

    global $woocommerce;
    $woocommerce->cart->empty_cart();

    // Do nothing with the data and return
    return $cart_item_data;
}

Now I need to do this on a specific page template. Is that possible?

I tried this but it's not working

add_filter( 'woocommerce_add_cart_item_data', 'wdm_empty_cart', 10,  3);

function wdm_empty_cart( $cart_item_data, $product_id, $variation_id ) {

    global $woocommerce;
    if (is_page_template('templates/checkout.php')){
        $woocommerce->cart->empty_cart();
    }
    
    return $cart_item_data;
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文