简体   繁体   English

单击联系表 7 提交按钮时,我想清理 Woocommerce 购物车

[英]When clicking contact form 7 submit button, I would like to clean the Woocommerce cart

I'm using Wordpress Avada theme.我正在使用 Wordpress Avada 主题。 When I click on the Submit form, I want to clear the cart.当我点击提交表单时,我想清除购物车。 截图在这里

Please try below code this will work for you.请尝试以下代码,这对您有用。

add_action('wpcf7_mail_sent', function ($cf7) {
    global $woocommerce;
   $woocommerce->cart->empty_cart(); 
});

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM