Change price

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

Thank You

version 1.3
14 年 前
Execute the following script over your database:


UPDATE Nop_ProductVariant
SET Price = Price*1.1
GO
14 年 前
I mean in system (interface) :-)))
14 年 前
SET Price = Price*1.1 is alot more than 10%
14 年 前
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.