Is there a way to edit the quantity in bulk.
For example if I want to change my quantities from 5 of each to 10 of each have I got to individually edit 300 products or can I edit them all at once to show that I now have 10?
Thanks in advance
H.
Is there a way to edit the quantity in bulk.
For example if I want to change my quantities from 5 of each to 10 of each have I got to individually edit 300 products or can I edit them all at once to show that I now have 10?
Thanks in advance
H.
Do you want to change ALL products in the store? Or just in certain categories?
I no longer provide installation support on forum for all my modules. However, if there are real bugs with the modules please feel free to contact me
Guess I should have made that clear huh?
To be honest I'll take Catagories if I can do that for now.
Thanks
H.
BACK UP your DATABASE FIRST
admin->tools>sql patches
update products set products_quantity = 10 where master_categories_id in (1,2,3)
Replace the numbers in the () by the id of the categories you want to update
I no longer provide installation support on forum for all my modules. However, if there are real bugs with the modules please feel free to contact me
Thank you very much. I'll give that a go.
H.
Worked perfectly in my store.
thanks it works with my store too:))
and it works with prices too.
UPDATE products SET products_price = 20 WHERE master_categories_id in (10);
This is what I need to do!! How do i do it though?? where do I find this;
UPDATE products SET products_price = 20 WHERE master_categories_id in (10);
?
Many thanks.
Bookmarks