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.
$this->_productCollection = Mage::getModel('catalog/product')->getCollection()
->addAttributeToFilter('manufacturer',array(
    "eq",'43') 
                                           )
                      );

This fetches the products of a certain manufacturer, based on the attribute's id, which is a number.

How can I modify this to get the products of a certain manufacturer (or attribute), but with the attribute's value, and not the id?

share|improve this question

2 Answers

You can try this , ->addFieldToFilter(array( array('attribute'=>'manufacturer','eq'=>'ABC')

share|improve this answer

Try

    $manufacturer_name = 'xyz';
    $product = NULL;
    $manufacturer_id = NULL;

    $manufacturers  = Mage::getModel('eav/config')->getAttribute('catalog_product','manufacturer')->getSource()->getAllOptions(false,true);

    foreach($manufacturers as $m){
       if(strtolower($m['label']) == strtolower($manufacturer_name)){
          $manufacturer_id = $m['value'];
          continue;
       } 
    }

   if($manufacturer_id){
     $product = Mage::getModel('catalog/product')->loadByAttribute('manufacturer', $manufacturer_id);  
   }

   print_r($product); 
share|improve this answer

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.