I have a script that updates Magento products from another database. Currently, the other database field for 'categories' has to have the category ID's that I want to assign to the product.
I would like the other database to be able to include just the category 'name' and have the script get the ID.
My first problem is that the code I am using:
$category_model = Mage::getModel('catalog/category')->loadByAttribute('name',$mycat);
only works on root categories, not sub-categories.
My sample category structure is:
- Supplies
- Supplies Office Supplies
- Supplies Office Supplies Envelopes
- Supplies Coffee
I would like the other database to only have to include 'Coffee' and my script would find the category ID and set it.
Is there any way to do that? Or if not, how would I find the right category ID if the field in the other DB had something like Supplies|Office Supplies|Envelopes?
Thanks!