Я хотел бы отключить опцию «Корзина требует оплаты» для списка кодов скидок:
- купон1, купон2, купон3 и т. д.
Код: Выделить всё
add_filter( 'woocommerce_cart_needs_payment', 'filter_cart_needs_payment', 10, 2 );
function filter_cart_needs_payment( $needs_payment, $cart ) {
// The targeted coupon code
$targeted_coupon_code = 'coupon1';
if( in_array( $targeted_coupon_code, $cart->get_applied_coupons() ) ) {
$needs_payment = false;
}
return $needs_payment;
}
Код: Выделить всё
$targeted_coupon_code = array('coupon1', 'coupon2', 'coupon3');
Источник: https://stackoverflow.com/questions/734 ... oocommerce
Мобильная версия