Remove coupons when Gift Card in cart
-
Hello, not sure if possible but I try to remove all coupons when a Gift Card is used for payment, the idea is to use WC()->cart->remove_coupons();
function remove_coupon_code_from_session(){
$session_data = (array) WC()->session->get( PWGC_SESSION_KEY );
if ( isset( $session_data[‘gift_cards’] ) && count( $session_data[‘gift_cards’] ) > 0 ) {WC()->cart->remove_coupons();
}
}would be possible starting from something like the code above to have it work?
thank you
Regards
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Remove coupons when Gift Card in cart’ is closed to new replies.