sh-s
12/8/2015 - 11:40 AM

remove coupons on every add to cart action

remove coupons on every add to cart action

<?php

/*remove coupons on every add to cart action*/
add_action('woocommerce_add_to_cart', function() {

   $coupons = WC()->cart->get_applied_coupons( ); // decide to remove or not
   
   if ( isset( $coupons ) ){
    foreach( $coupons as $coupon ){
       WC()->cart->remove_coupon( $coupon );
   }
}

});
?>