Repository Forums Support WooCommerce Extended Coupon Features PRO BOGO Free Product applied to ALL products in cart Reply To: BOGO Free Product applied to ALL products in cart

#1564
Soft79
Keymaster

Tick ‘allow multiplication’ and use this snippet in functions.php (replace COUPON_CODE_HERE with the actual coupon code:


add_filter( 'wjecf_bogo_product_amount_for_coupon', 'wjecf_bogo_product_amount_for_coupon', 10, 2 );

function wjecf_bogo_product_amount_for_coupon( $amount, $coupon ) {
  if ( $coupon->code == 'COUPON_CODE_HERE' ) {
    $amount = floor($amount / 5);
  }
  return $amount;
}