Magento – Pagination not showing on any page with products

magento-1.9paginationtoolbar

I'm at a loss as to what to do next, I've reviewed all of the posts on the site and tried every solution, but still I am unable to see pagination of the products, the toolbar is simply not displaying?

Steps taken so far:
1. Upgraded the site from 1.7 to 1.9 (not working on 1.7 either, so thought an upgrade would resolve)
2. Added all appropriate code, based on the solutions on this site, to List.phtml, Catalog.xml
3. Tried recopying the original files from a fresh download.
4. Modified the pagination settings within the admin menu, from grid to list etc and played around with the settings, I get to see more products when amending, but still no toolbar displaying?
5. Added a 3rd party extension called Meanbee infinite scroll, to see if that would override the settings. But no change at all after enabling in the admin config menu?

The site address is sos-swim.co.uk.

I'm not a web developer and just trying to help out a friend.

Any suggestions would be great to point me in the right direction.

All the best
Alan

Best Answer

Adding ?p=2 to the end of your url works fine, so that shows us that the pagination is active, it's just the block not displaying.

Infinite scroll extensions typically 'click' the pagination in the background, hence that one not working for you

Do you have this code in list.phtml?

<div class="toolbar-bottom">
    <?php echo $this->getToolbarHtml() ?>
</div>

Also, check settings such as 'is anchor' in the category settings in Magento admin - there's a chance you're targeting the wrong catalog_category handle in your catalog.xml.

Related Topic