Is there a way to increase all of the prices at once. Either by a % or a set amount.
I have 1000 products listed and to increase them one by one is not really a viable option.
Is there a way to increase all of the prices at once. Either by a % or a set amount.
I have 1000 products listed and to increase them one by one is not really a viable option.
You can backup your database and use something like:
Change all to $7.79
Add 5% to all prices:Code:UPDATE products SET products_price = 7.79;
You should then run in the Tools ... Store Manager ... the Update Products Price Sorter ...Code:UPDATE products SET products_price = products_price*1.05;
The Products Price Sorter is for setting the lowest price of a product to the products_price_sorter field for use on sorting and searches etc.
Linda McGrath
If you have to think ... you haven't been zenned ...
Did YOU buy the Zen Cart Team a cup of coffee and a donut today? Just click here to support the Zen Cart Team!!
Are you using the latest? Perhaps you've a problem that's fixed in the latest version: [Upgrade today!]
Officially PayPal-Certified! Just click here
Try our Zen Cart Recommended Services - Hosting, Payment and more ...
Signup for our Announcements Forums to stay up to date on important changes and updates!