Ajeh, Thanks for teaching this simple price-change strings! Very helpful! :smile:
I have now learned how to make an all over price change:
UPDATE products SET products_price = products_price * 1.35;
How to make changes by master category id:
UPDATE products SET products_price = products_price * 1.35 WHERE master_categories_id = XX;
And how to change the price of attribute priced items:
UPDATE products_attributes SET options_values_price = options_values_price * 1.35;
The last one affect all attribute priced items.
Is there a nice way to make this happen to only a attribute group?
Say by group name?
Thanks for all your nice and patient answers in this community! :yes:
/Jan