Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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!

share|improve this question
loadByAttribute will not behave any differently for parent or sub categories. Can you say exactly what is happening: are you getting null back or are you getting the wrong category? – Drew Hunter Jun 11 '12 at 7:18

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.