Hi there.
Is there any way in Virtuemart to edit lots of prices together. Like I want to add 10dollars to 100 product's prices.
Thanks beforehand.
Directly in the table - run a query like
UPDATE `jos_virtuemart_product_prices` SET `product_price` = `product_price` + 10
you need to fine tune your query to exactly what you need - and of course back up first