How would I go about changing my whole cart Product Qty Units to 5 without going through each product individually. I have 2100 products and this will be very time consuming without a code or something. Thanks in advance.
How would I go about changing my whole cart Product Qty Units to 5 without going through each product individually. I have 2100 products and this will be very time consuming without a code or something. Thanks in advance.
Is your site Upgraded to the current version 1.5.4 Yet?
zencart-upgrades-website-installation
Ajeh do you know if there is a code I can insert to update my whole store instead of doing it one by one. Thank you.
Is your site Upgraded to the current version 1.5.4 Yet?
zencart-upgrades-website-installation
You can try to update your product quantity in the database manually.
BACKUP your database before you try this.Code:UPDATE `products` SET `products_quantity` = '5';
Visit Qacaq.com, your Online Jewelry Store in Malaysia .
Qacaq.com Australia - Your Gemstone Jewelry Store in Australia was launched.
Is your site Upgraded to the current version 1.5.4 Yet?
zencart-upgrades-website-installation
I have another question though, is it possible just to change products_quantity_order_units just for a particular category instead of changing the whole store, or do I have to do it manually. If I can how do I do it like that. Thank in advance.
UPDATE `products` SET `products_quantity_order_units` = '5';
Is your site Upgraded to the current version 1.5.4 Yet?
zencart-upgrades-website-installation
If the Products all use the same master_categories_id you could use:
where XX is the master_categories_id of these Products ...Code:UPDATE products SET products_quantity_order_units = 5 WHERE master_categories_id = XX;
NOTE: be sure to backup your database before making global changes like this ...
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!