kreamweb
5/22/2017 - 10:30 AM

This code removes all products that are on sale at the moment of creation of coupon.

This code removes all products that are on sale at the moment of creation of coupon.

<?php

add_filter('ywrac_coupon_args','ywrac_coupon_args');
function ywrac_coupon_args( $args ){

	$product_on_sale = wc_get_product_ids_on_sale();
	if( is_array( $product_on_sale) && !empty( $product_on_sale ) ){
		$args['exclude_product_ids'] = implode( ',', $product_on_sale );
	}

	return $args;
}