Consider the below code:
$productCollection123 = Mage::getModel('catalog/product')->getCollection() ->addStoreFilter(Mage::app()->getStore()) ->addAttributeToFilter('type_id', array('eq' => 'simple')) ->addAttributeToFilter('color',5); so the resultant count is count($productCollection123) = 57, now is it possible to do a removeAttributeFromFilter so that it removes the condition 'color'=5 from the current collection result?
Note: it should not remove condition 'type_id'='simple'