Edit Entry drop-down not showing all values [RESOLVED]

I have one form, Our Users, that has a Company Name dropdown. It pulls values from entries in our Add New Company form. Add New Company has over 1000 entries, but the Company Name dropdown in Our Users only shows 342 results, in alphabetic order, going from A through G. I can’t find anything that’s limiting the options. Any thoughts on what could be going on?

Thanks for any insights.

Sounds like you may be using Gravity Wiz’s Populate Anything perk to dynamically populate your dropdown. For performance there’s a 500 item limit by default, but this can be increased if needed.

2 Likes

Bingo! I’m fairly new to this project and am not familiar with Populate Anything but you are right. For anyone’s future reference, I ended up adding this to functions.php:

	//gppa_query_limit_FORMID_FIELDID
add_filter( 'gppa_query_limit_66_16', function( $query_limit, $object_type ) {
	return 10000;
}, 10, 2 );

Thanks very much!

2 Likes

This topic was automatically closed 24 hours after the last reply. New replies are no longer allowed.