Hiding All Prices On Cs-Cart

Hi,

Im looking for a way to change ALL product price to "0".

We tried to hide prices for guests ( Via here) but we can still see prices...

help will be appreciated...

What about built-in Catalog Mode add-on?

http://docs.cs-cart.com/4.4.x/user_guide/addons/catalog_mode/index.html

Just enabled Catalog mode addon, but I can still see prices...

You are right, sorry. If you do not use option combinations, open phpMyAdmin and run the following query

UPDATE cscart_products SET amount = 0;

It will set amount of all products to zero.

As alternative, export all products, change amount in excel to zero and import the file back

Thanks,

well your query reset all of our inventory but the direction was overall good

we used

UPDATE cscart_products SET amount = 0;

Sorry we used

UPDATE `cscart_product_prices` SET `price` = 0;

Sorry we used

UPDATE `cscart_product_prices` SET `price` = 0;

Sorry, my bad. I was inattentive