cancel
Showing results for 
Search instead for 
Did you mean: 

Pagination is suddenly missing

Pagination is suddenly missing

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.

5 REPLIES 5

Re: Pagination is suddenly missing

Hi.

Has this problem now gone away? Looking at this link http://www.nubehangen.nl/kinderbehang.html it seems to show the toolbar and paginator just fine.

Regards,
Andy
Problem solved? Click Accept as Solution!
www.iwebsolutions.co.uk | Magento Small Business Partner

Re: Pagination is suddenly missing

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!

Re: Pagination is suddenly missing

Please post solution! 

Thanks.

 

Re: Pagination is suddenly missing

Hi can you post the solution for this I'm having the same problem

Re: Pagination is suddenly missing

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>