Problem : Product count is not correct on Layered Navigation in List Page for all attribute but category product counts are fine.
Magento Version : 1.7.0.2
I have removed all override of catalog file and folder and also uploaded magento core catalog file to check that is it problem of core file but Still i am not getting issue.
Example :
Manufacturer
Manufacture 1 (90)
Manufacture 2 (82)
Manufacture 3 (223)
But when i click on Manufacture 1 there will be 3 products.
One thing i found, in below mentioned code if I change Mage::getSingleton('catalog/layer'); to Mage::getModel('catalog/layer'); than product count is fine but product are not display according to filter.
app/code/core/Mage/Catalog/Block/Layer/View.php Line no - 149
public function getLayer()
{
return Mage::getSingleton('catalog/layer');
}
I appreciate for any help.
Thanks in advance.