Populate ACF select field options with Gravity Forms to select a specific form
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Populate ACF select field options with Gravity Forms forms | |
*/ | |
function acf_populate_gf_forms_ids( $field ) { | |
if ( class_exists( 'GFFormsModel' ) ) { | |
$choices = []; | |
foreach ( \GFFormsModel::get_forms() as $form ) { | |
$choices[ $form->id ] = $form->title; | |
} | |
$field['choices'] = $choices; | |
} | |
return $field; | |
} | |
add_filter( 'acf/load_field/name=submit_project_gf_form_id', 'acf_populate_gf_forms_ids' ); |
Great solution! How do i display the selected form on my page? The value from the select box is the form ID.
Hey @SjorsHartwijk
You're looking for the gravity_form()
function, see https://docs.gravityforms.com/adding-a-form-to-the-theme-file/
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks. And you can use this if you'd like to use this function in a exported PHP file: