Question

How to exclude from discount (shopping cart rules) products with special price? I want to make discount coupon only for products with normal price. Is this even possible?

Was it helpful?

Solution 3

Found quite simple solution:

If ALL of these conditions are FALSE :

**Special Price**  greater than  **0**

OTHER TIPS

It is obvious things that coupon code should not apply on discount products. But there is no rule and conditions for that in magento. Here i have use a small trick and its work for me. I hope it will be use for needed people also.

Go to shopping cart price rule and click on Actions tab and follow the below image condition.

enter image description here

Special Price is product attribute.

So enable it for promo rules creation in admin - catalog - attributes - manage attributes.

And then in the rule condition set "special price" < 1

Alternatively if your Sale Price always contains at least one zero (e.g. 75.00).

Then you can use:

Apply the rule only to cart items matching the following conditions:
    If ALL  of these conditions are TRUE :
        Sale Price 'does not contain' 0

This works - Shopping Cart Price Rules (In Actions Tab) SKU is not one of _____ (SKU Number). Below is my example for my promotion of 16% off any order over 19.95. I already have 2 products on a separate promo, so I don't want anyone to add another 16% on top of it.

Drop Down Menu Apply Percent of Product Discount Discount Amount *16 Maximum Qty Discount is Applied To 0 Discount Qty Step (Buy X) 0 Apply to Shipping Amount Free Shipping - NO Stop Further Rules Processing

If ALL of these conditions are TRUE : Price in cart equals or greater than 19.95
SKU is not one of 6301, 6804

Ivan

I have put some easy logic with out doing any coding

Step1: Create an attribute of type Yes/No and enable this attribute in promotion.

step2: Apply all special price products. assign new attribute value to yes and update in products.

Step3: Now got to admin > promo > shopping cart rule section and inaction tab put you logic.

It only excluding special price apply products.

Let know if you have queries

Licensed under: CC-BY-SA with attribution
Not affiliated with magento.stackexchange
scroll top