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.
Looking for a skilled developer? I'm currently available for freelance, contract, or full-time remote opportunities! Let's create something amazing together. Send me a quick message, and I'll respond within 24 hours!
Recent Posts
- SQL From Basics to Mastery — A Complete, Hands-On Guide
- WordPress Beginner Interview Questions
- Mastering Traits in PHP - The Complete Guide for Code Reuse and Modularity
- Understanding the Singleton Pattern and Using Traits to Achieve Singleton in WordPress Plugin Development
- REST API Methods Explained with Best Practices for Building Clean and Secure APIs
Your Questions / Comments
If you found this article interesting, found errors, or just want to discuss about it, please get in touch.