PLEASE NOTE: These forums are no longer utilized and are provided as an archive for informational purposes only. All support issues will be handled via email using our support ticket system. For more detailed information on this change, please see this blog post.

Backend View Entries - Changing Pagination Limit

  1. Hi, I'm currently using WP 3.4.1 and Gravity 1.6.4.5.4 soon to be 1.6.5.

    I was wondering if it is possible to change the number of entries you see in the backend so it's not the default 20 per page? I would like to be able to view all entries at once or even have the ability to change the pagination limit.

    Any insight on how to do this would be great.

    Posted 12 years ago on Friday July 27, 2012 | Permalink
  2. David Peralty

    There currently isn't a way to change the number of entries displayed per page. This is an option we are looking at adding in the future.

    Posted 12 years ago on Friday July 27, 2012 | Permalink
  3. Mike H
    Member

    In the meantime, you can edit the file entry_list.php at line 121 (in v1.6.7)
    FROM
    $page_size = apply_filters("gform_entry_page_size", apply_filters("gform_entry_page_size_{$form_id}", 20, $form_id), $form_id);
    TO
    $page_size = apply_filters("gform_entry_page_size", apply_filters("gform_entry_page_size_{$form_id}", 200, $form_id), $form_id);

    (where "20" was the original entry count per page and "200" is the new entry count per page)

    Posted 12 years ago on Wednesday September 12, 2012 | Permalink
  4. We do not support modifying the plugin files, and there is no need to modify the plugin files. Because the line you are modifying already lists a filter, we can use that filter to change the number of entries displayed in the admin. http://www.gravityhelp.com/documentation/page/Gform_entry_page_size

    Posted 12 years ago on Friday September 14, 2012 | Permalink