Hello,
At my online store http://tinyurl.com/kacdhd5 all of a sudden the pagination and toolbar are dissapeared on the category view.
I already checked the files (toolbar.phtml and pager.phtml) and if the blocks are well called in the xml files of the category page. The thing is that it worked fine and I didn't made any changes in the last week.
Does anyone here have the solution for me to solve this problem?
Thanks in advance.
Yes problem is already solved with another method that makes the pagination visible again. Not the way that it is right but it is working! Thanks for your time to take a look!
Please post solution!
Thanks.
Hi can you post the solution for this I'm having the same problem
I solved this by checking my theme's custom layout/catalog.xml and other related files with pagination to make sure that within the calls to this...
<block type="catalog/product_list_toolbar" name="product_list_toolbar" template="catalog/product/list/toolbar.phtml"></block>
I had this... (mine was missing in several layout files)
<block type="page/html_pager" name="product_list_toolbar_pager"/>
Final XML looked like this...
<block type="catalog/product_list_toolbar" name="product_list_toolbar" template="catalog/product/list/toolbar.phtml">
<block type="page/html_pager" name="product_list_toolbar_pager"/>
</block>