gravityflow_inbox_paging

Allows the paging criteria to be modified before entries are searched for the inbox.
Refer to the Gravity Forms API documentation on get_entries for more details on the structure of paging criteria.

Example Usage:

add_filter( 'gravityflow_inbox_paging', 'sh_gravityflow_inbox_paging_criteria', 10, 1 );
function sh_gravityflow_inbox_paging_criteria( $paging_criteria ) {
	//Show first page of results and 125 results per page.
	$paging_criteria = array( 'offset' => 0, 'page_size' => 125 );
	return $paging_criteria;
}

Placement

This code should be placed in the functions.php file of your active theme.