Advanced Custom Field with which we can select Gravityforms.
Finally the Advanced Custom Fields: Gravityforms Add-on is available on the WordPress plugin repository!
The plugin is available from the WordPress plugin repository
- Upload the plugin files to the
/wp-content/plugins/acf-gravityforms-add-on
directory, or install the plugin through the WordPress plugins screen directly. - Activate the plugin through the 'Plugins' screen in WordPress
- Use the Settings->Plugin Name screen to configure the plugin
- (Make your instructions match the desired user flow for activating and installing your plugin. Include any steps that might be needed for explanatory purposes)
You can also install Advanced Custom Fields: Gravityforms Add-on trough composer
composer require dannyvanholten/acf-gravityforms-add-on
or if you make use of WPackagist
composer require wpackagist/acf-gravityforms-add-on
To use the the field you just need to know how advanced custom fields work. You can check out their documentation
The Gravityforms Add-on returns either an single form object / id or an array of objects / id's Now we know that we can easily use it to build our fields :)
$form = get_field('my-form');
gravity_form($form, true, true, false, '', true, 1);
$form = get_field('my-form');
gravity_form($form['id'], true, true, false, '', true, 1);
$forms = get_field('my-form');
foreach($forms as $form) {
gravity_form($form, true, true, false, '', true, 1);
}
Want to get involved and improve Advanced Custom Fields: Gravityforms Add-on? Fork this repo and whenever you have something just make a pull request. After review we might add it to the Gravityforms ACF Field GitHub Repository.
As Gravityforms & Advanced Custom Fields are continuously in development we like to take a look ahead together for what's coming. If you want to get involved developing Advanced Custom Fields: Gravityforms Add-on you can ask us if you can implement some of the features yourself.
- Add dutch translations
- Create an admin notice when plug-in gets activated but Gravityforms is not activated yet
- Improve code by implementing code climate's hints.
I want to thank @stormuk (@lgladdy & @adampope) for initally creating this plug-in. Be sure to follow them!