If we want to remove product count from layered navigation in Magento, then we can follow following different steps:
1. You can disable the product count in layered navigation from the Admin Panel, without modifying any templates.
Open Admin Panel and change following setting.
System -> Configuration -> Catalog -> Layered Navigation -> Display Product Count
Set Display Product Count "No" and save setting.
2. You can remove from phtml file.
Open following file from following location:
app/design/frontend/base/default/template/catalog/layer
And Remove below code or comment code:
(<?php echo $_item->getCount() ?>)
1. You can disable the product count in layered navigation from the Admin Panel, without modifying any templates.
Open Admin Panel and change following setting.
System -> Configuration -> Catalog -> Layered Navigation -> Display Product Count
Set Display Product Count "No" and save setting.
2. You can remove from phtml file.
Open following file from following location:
app/design/frontend/base/default/template/catalog/layer
And Remove below code or comment code:
(<?php echo $_item->getCount() ?>)