Categories: How ToMagento 2

How to Add Pagination in Custom Collection of Magento 2

Whenever you have dozens of pages of the website content, listing all the links on a single page makes it clumsy and can cause heavy load times. Pagination divides a single piece of content into various pages which directly affect user experience, development of website and SEO.

It is the most common technique of providing navigation. Pagination is already available in default Magento 2 collections like product collection, search collection etc. But recently when we were working on a project of our client, we required to add pagination in custom collection of Magento 2. In order to fulfill this requirement, we dig deeper and went through many approaches, of which the best is what I’m sharing here.

Step by step guide to add pagination in custom collection of Magento 2:

  1. Create Collection for Pager:
    protected $categorycollectionFactory;
     public function __construct(\Magecomp\Blog\Model\ResourceModel\Category\CollectionFactory $categorycollectionFactory) 
        { 
            $this->categorycollectionFactory = $categorycollectionFactory; 
        }
     public function getCategory()
        {
          //get values of current page. If not the param value then it will set to 1
            $page=($this->getRequest()->getParam('p'))? $this->getRequest()->getParam('p') : 1;
        //get values of current limit. If not the param value then it will set to 1
            $pageSize=($this->getRequest()->getParam('limit'))? $this->getRequest()->getParam('limit') : 1;
            $categorycollection = $this->categorycollectionFactory->create();
            $categorycollection->setPageSize($pageSize);
            $categorycollection->setCurPage($page);
            return $categorycollection;
        }
    
  2. Add Collection to Pager and Set Available Limits:
    Below code will add pager to layout and set limit for number of items to be shown on each page. This limit setting is totally depends on your requirements, but I would suggest to keep this limit lower in order to avoid effect of it on page load speed. This limit can be set based on size of content like for image, it should be 5 to 10 and for simple list with content, you can set upto 15. Setting limit for Magento 2 pagination is a bit tricky as the speed of default Magento 2 is really slow.
    protected function _prepareLayout()
     {
         parent::_prepareLayout();
         $this->pageConfig->getTitle()->set(__('Categories'));
         if ($this->getNews()) {
             $pager = $this->getLayout()->createBlock(
                'Magento\Theme\Block\Html\Pager',
                'magecomp.category.pager'
             )->setAvailableLimit(array(5=>5,10=>10,15=>15))->setShowPerPage(true)->setCollection(
                $this->getCategory()
             );
             $this->setChild('pager', $pager);
             $this->getCategory()->load();
         }
         return $this;
     }
    
  3. Getting the Child Block of the Pager:
    This function will return block with pagination and limit items to be shown.
    public function getPagerHtml()
    {
        return $this->getChildHtml('pager');
    }
    
  4. Add the following Code in phtml File to Call the Pager:

     

Hope this tutorial has helped you to add pagination in custom collection of Magento 2. Let me know if you require more help or any query regarding this. I would appreciate feedback and suggestions for this blog. Till then, Happy Coding!

Click to rate this post!
[Total: 16 Average: 3.8]
Dhiren Vasoya

Dhiren Vasoya is a Director and Co-founder at MageComp, Passionate ?️ Certified Magento Developer?‍?. He has more than 9 years of experience in Magento Development and completed 850+ projects to solve the most important E-commerce challenges. He is fond❤️ of coding and if he is not busy developing then you can find him at the cricket ground, hitting boundaries.?

View Comments

  • Hiii
    I don't understand that what can i write with '$pager = $this->getLayout()->createBlock(
    'Magento\Theme\Block\Html\Pager',
    'magecomp.category.pager'' in block file and what should i write in 'magecomp.category.pager' ?

    • magecomp.category.pager
      here
      magecomp -> module root name
      category->module name
      pager->this is from magento default

      • pager will provide
        1) total count and item count for current view . example : Items 7 to 12 of 16 total
        2) pagination
        3) how many you want to show per page like: 5 items per page ,10 items per page, 15 items per page

  • Hiii
    I don't understand that what can i write with '$pager = $this->getLayout()->createBlock(
    'MagentoThemeBlockHtmlPager',
    'magecomp.category.pager'' in block file and what should i write in 'magecomp.category.pager' ?

Recent Posts

How to Add Tooltip in Checkout Shipping Field in Magento 2?

Hello Magento Friends, In today’s blog, I will explain How to Add Tooltip in Checkout…

2 days ago

How to Integrate and Use MongoDB with Laravel?

MongoDB is a popular NoSQL database that offers flexibility and scalability when handling modern web…

3 days ago

NodeJS | Callback Function

In NodeJS, callbacks empower developers to execute asynchronous operations like reading files, handling requests, and…

4 days ago

How to Show SKU in Order Summary in Magento 2?

Hello Magento Friends, In today’s blog, we will learn How to Show SKU in Order…

6 days ago

Best Colors to Use for CTA Buttons

The "Buy Now" and "Add to Cart" buttons serve as the primary call-to-action (CTA) elements…

1 week ago

Magento 2: How to Save Custom Field Value to quote_address for Multi-Shipping Orders

Hello Magento Friends, In Magento 2, the checkout process allows customers to choose multiple shipping…

1 week ago