Hello all
My product Catalog is not well organised. There are huge Categories with too many sub-categories. And customers are more familiar with sub categories rather than parent categories.
But our online catalog only lets you search by parent categories. So, basically I have two questions.
First, in order to fix this DB design issue(MySQL), I would like to add another field into our products table, so that all subcategories are listed as subcategories. Like perhaps, Sub-Category = attr.
So, when I click on a link, it lists all products that has a sub-category of attr. That would fix the catalog problem. My question is, how would I do this?
Can someone give me a snippet of code that would add the SubCat Field to an already existing table, that allows NULLS. I would do this through PHPmyAdmin.
Also, my second question is, would this be the right direction to take to fix the catalog problem?
Thanks to all
MK