$batt_pack = Mage::getModel('catalog/product')->getCollection();
$batt_pack->addFieldToFilter('product_type',
        array(
            'like' => Mage::getResourceModel('catalog/product')
                        ->getAttribute('product_type')
                        ->getSource()
                        ->getOptionId('Battery Pack')
            )

although I used "like" it shows me only the ones that has just the product type of Battery pack it doesn't show me the ones has battery pack and some thing else how can I do that?

  ->getOptionId('Battery Pack%')

this one also didn't work I know it is so wrong but I guess I should do something like this

没有正确的解决方案

许可以下: CC-BY-SA归因
scroll top