Sarathlal N

Display all products without pagination – Magento 1

To display all products without pagination, we want to edit a core file in Magento.

To avoid feature update issues, first we are going to copy that core file in to our local code pool. So just copy Toolbar.php file from app/code/core/Mage/Catalog/Block/Product/List/ to our local code pool with same directory structure.

Now our file will be available as app/code/local/Mage/Catalog/Block/Product/List/Toolbar.php and we are going to edit this file.

Inside this file, we can find a function getLimit()( beginning around line 723 ). In the beginning of that function, just change $limit variable value as 'all'.

$limit = 'all';

After reloading the page, now we can see all the products in a single page with out pagination in Magento. If you feel any missing, just re index all data and refresh the Magento cache and reload again.

Got a project in mind? Send me a quick message, and I'll get back to you within 24 hours!.

Recent Posts

  1. Disabling Payment Methods in WooCommerce Based on Conditions
  2. How to Update Product Quantity in WooCommerce Using Custom Code
  3. Dynamically Generating a Table of Contents in WordPress
  4. Direct Checkout in WooCommerce - Add Product to Cart from Checkout Page & Skip Shop, Product, and Cart Pages
  5. Understanding the Impact of git reset --hard Command

Your Questions / Comments

If you found this article interesting, found errors, or just want to discuss about it, please get in touch.