简体   繁体   中英

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

I'm using Wordpress Avada theme. 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(); 
});

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

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