This article contains PHP code and is intended for developers. We offer this code as a courtesy, but don't provide support for code customizations or 3rd party development.
By default, the admin entries list page now displays only five repeated entries per row instead of every repeater entry. Use this filter to change the number of repeated entries displayed on the entries list.
Usage
add_filter( 'frm_pro_repeated_entries_display_limit', 'change_repeated_entries_display_limit' );
Parameters
- $limit (integer)
Examples
Change repeated entries display limit
By default, the Entries list displays five repeated entries for each entry. You can adjust this limit by using the following code example to increase or decrease it.
add_filter( 'frm_pro_repeated_entries_display_limit', 'change_repeated_entries_display_limit' );
function change_repeated_entries_display_limit( $limit ) {
// default is 5.
return 20;
}