A plugin to dynamically populate Gravity Form fields with form submissions.
Any Gravity Form multiple choice field (select, checkbox or radio) can be mapped to have the submission entries
of another form as their values.
To create related fields edit a Gravity Form and go to ‘Related Fields’ from the Form Settings menu.
Any multiple choice field (select, checkbox or radio) can be mapped to have the submission entries
of another form as their values.
To create related fields edit a Gravity Form and go to ‘Related Fields’ from the Form Settings menu.
gravity-forms-related-fields
to the /wp-content/plugins/
directoryThis limit is set to reduce database timeouts. There is a filter gfrf_entry_limit
to increase the limit. As an example add the following code to your functions.php file:
function my_theme_change_gfrf_entry_limit( $entry_limit ) { return 500; } add_filter( 'gfrf_entry_limit', 'my_theme_change_gfrf_entry_limit' );
Please raise a ticket on the issue tracker. Pull requests also accepted!