Hi I have a script that selects products. But it select all products, which have manufacturer 3,5. It works fine but I wanna select products that haven’t fill in a field manufacturer. How can I do this?
$collection = Mage::getModel('catalog/product')->getCollection()
->addAttributeToFilter('manufacturer', array(3,5))
->addAttributeToSelect('*');
1 Answer