SHORT_DESCRIPTION
Creates a select field to allow users to choose a specific Formidable Form from a list.
Returns form id.
<?php
$form = get_field('formidable_select'); // or whatever your field is named
// Echo the form
// see https://formidableforms.com/knowledgebase/publish-a-form/)
echo FrmFormsController::get_form_shortcode( array(
'id' => $form,
'title' => false,
'description' => false
) );
?>
This ACF field type is compatible with:
- ACF 5
- ACF 4
The Formidable Forms plugin must be installed and activated.
- Copy the
acf-formidable_select
folder into yourwp-content/plugins
folder - Activate the Formidable Forms plugin via the plugins admin page
- Create a new field via ACF and select the Formidable Forms type
- Please refer to the description for more info regarding the field type settings
This plugin is really just a mashup of these two things:
nicmare
and @welaika in ACF Support Forums on this thread:
https://support.advancedcustomfields.com/forums/topic/trick-retrieve-formidable-pro-forms-in-acf/
@stormuk who built a Gravity Forms select plugin (this is basically a fork of that) https://github.com/stormuk/Gravity-Forms-ACF-Field