Search code examples
magento

How to get all products count in search result page of Magento 1.9


I want to get product count in search result and tag page This code works on category page but not in search result and tag

$this->getLoadedProductCollection()->count();

I also checked this code and no result at all

$this->getCollection()->count();

I want to use it in list.phtml file


Solution

  • Hello check this file

    app/design/frontend/base/default/template/catalogsearch/result.phtml

    <?php echo $this->getResultCount(); ?>
    

    Hope this help you...