How can I find all products without images in Magento?

前端 未结 10 695
Happy的楠姐
Happy的楠姐 2020-12-18 03:39

I have some thousand products and want to find all products without an image. I tried to search for (no image) in the admin products grid, but no result. How can I make an S

10条回答
  •  感情败类
    2020-12-18 03:49

    There are both ways to do:

    $products = Mage::getModel('catalog/product')
    ->getCollection()
    ->addAttributeToSelect('*')
    ->addAttributeToFilter('small_image',array('notnull'=>'','neq'=>'no_selection'));
    

    Above code should work but in my case it was not working. So i tried following:

    $products = Mage::getModel('catalog/product')
    ->getCollection()
    ->addAttributeToSelect('*')
    ->addAttributeToFilter('small_image',array('neq'=>'no_selection'));
    

    Good Luck!

提交回复
热议问题