Change price

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
14 years ago
I would like to change the price of all products at once. For example, + 10%.
Its possible?

Thank You

version 1.3
14 years ago
Execute the following script over your database:


UPDATE Nop_ProductVariant
SET Price = Price*1.1
GO
14 years ago
I mean in system (interface) :-)))
14 years ago
SET Price = Price*1.1 is alot more than 10%
14 years ago
SET Price = Price*1.1

Looks correct.

Try your calculator and see the result.
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.