How to markup price for products in certain category or product type?
To add markup price for a specific type, you can use the following price condition:
col_string("Type")=="Dress", *1.3
The column named Type has the value Dress, the price will be markup by 30%.
contains ("pink", col_string("Description")), *1.2
if the Description column contains the word pink, then markup the price by 20%
To set this up, go to the price field, then select Smart Setting > Price Conditions, and enter the rule you would like to apply.
col_string("Type")=="Dress", *1.3
The column named Type has the value Dress, the price will be markup by 30%.
contains ("pink", col_string("Description")), *1.2
if the Description column contains the word pink, then markup the price by 20%
To set this up, go to the price field, then select Smart Setting > Price Conditions, and enter the rule you would like to apply.
Updated on: 03/10/2024
Thank you!