How to apply a percentage discount to all products of a brand
You can apply a percentage discount to all products belonging to a specific brand by using the Price field and setting up a Smart Settings condition. This allows you to assign different discount percentages for different brands.
Steps to apply a discount to a specific brand
- Go to Price Field in your feed setup.
- Open Smart Settings.
- Add a Price condition using the brand name (Vendor).
Example: Apply a 15% discount to all Biretix products
(If) Vendor == "Biretix"
(Then) *0.85
This will apply a 15% discount (multiplies prices by 0.85) for all products from vendor Biretix in the store.
Alternatively, if your Vendor value comes from a specific column in your feed file:
(If) col_string("Vendor") == "Biretix"
(Then) *0.85
Notes
- You can repeat the same structure to set different discount percentages for different brands.
- If a discount does not apply as expected, check a few sample SKUs and verify that the Vendor value matches exactly (case‑sensitive).
Updated on: 21/05/2026
Thank you!
