Home » Item #942
When I go to create a new product, there should be three options for Product Type:
- Single price
- Multiple product 'versions
- Assign to option groups
...but my store is missing one or more of these. Why is this and how can I fix it?
We have seen this happen to several stores. It appears to be that somehow certain versions end up tagged as belonging to a product with ID of zero (i.e. a product that does not exist).
To clear the issue, go to the 'execute query' page in the back end and run this code to check for such versions:
SELECT * FROM tblCactuShop1Versions WHERE V_ProductID = 0
DELETE * FROM tblCactuShop1Versions WHERE V_ProductID = 0