Hi
Is there a way to delete all products in the buynow module in one go? Maybe a sql script we can run?
While we develop we are testing different variations, product combinations etc - but before we go live, we will want to delete all the test data prior to populating the store with proper product data.
Thanks :)
From sql mgmt studio run the following command:
truncate table smith_products
If you have product variants then run the following command:
truncate table smith_productvariants
-Scott
Thanks Scott :)
You should also run truncate table smith_CategoryProduct when doing a bulk delete - if you don't, you end up getting duplication in the product listings