Sometimes there are products with price zero, or other specific column/value, that need to be disabled.
It's quite easy to update all your products with this sql UPDATE.
update oc_product set status = 0 where price = 0.0000;
It's quite easy to update all your products with this sql UPDATE.
update oc_product set status = 0 where price = 0.0000;
Comments
Post a Comment