Exclude single item from coupon discounts
-
Does this still work? I get a 500 error when trying it? I need to exclude one singe product from the discounts/emails?
add_filter(‘woo_ca_generate_coupon’, ‘update_coupon_options’);
function update_coupon_options( $coupon_post_data ){
$coupon_post_data[‘exclude_product_ids’] = ‘1,2’;
return $coupon_post_data;add_filter(‘woo_ca_generate_coupon’, ‘update_coupon_options’);
function update_coupon_options( $coupon_post_data ){
$coupon_post_data[‘exclude_product_ids’] = ‘1,2’;
return $coupon_post_data;
}
Viewing 5 replies - 1 through 5 (of 5 total)
Viewing 5 replies - 1 through 5 (of 5 total)
- The topic ‘Exclude single item from coupon discounts’ is closed to new replies.