Magento – Change pager template

pagerpaginationtoolbar

I am trying to include a different pager for the bottom toolbar. For this I have changed the template used by the bottom toolbar:

<?php echo $this->getToolbarBlock()->setTemplate('catalog/product/list/toolbar-bottom.phtml')->toHtml(); ?>

How can I change the template used for <?php echo $this->getPagerHtml() ?> within toolbar-bottom.phtml?

Best Answer

getPagerHtml() not use any template file. This is a function of Mage_Catalog_Block_Product_List_Toolbar Class.

Related Topic