We are currently in the release candidate stage. We want to as many as possible to try the plugin in their configurations and setups and report any problems back to us. The first stable version (1.0.0) will be released as soon as we have collected enough feedback and fixed the issues that have been reported. We currently use it in production without any issues ourselfs and it should be safe to use this your current developemnt projects, or production enviornments if you test it thoroughly.
Adds a "Page Builder Field" for the Advanced Custom Fields WordPress plugin.
- The plugins require the following plugins:
- Advanced Custom Fields 5+ (ACF Pro). Support ACF version 4 coming soon. See issue for updates.
- SiteOrigin Page Builder
- PHP 5.3+
The page builder field can be used as any other ACF field. get_field
will output the HTML for the page builder layout and the needed CSS will be generated on the page footer.
More documentation coming soon.
- Copy the
acf-page-builder-field
folder into yourwp-content/plugins
folder - Activate the plugin via the plugins admin page (and make sure the required plugins are already activated)
- Create a new field via ACF and select the Page Builder Field type
- Use of ACF Page Builder field in widget areas. We aim to fix this in a comming release.
- Does not work on ACF Option pages. We aim to fix this in a comming release.
- Some issues with Page Builder content in
the_content()
(normal post content) if an ACF Page Builder field is rendered beforethe_content()
. This is due to the way the page builder works and we can't fix this in a good way. We recommend using ACF Page Builder fields instead and removing the normal post content completely on ACF-pages in WP-Admin as a workaround.
A blog post will be published soon about how we use this plugin to make an awesome CMS experience for our customers.
if( function_exists( 'get_field' ) && get_field( 'page_builder_field' ) ) {
echo get_field( 'page_builder_field' );
}
Please see readme.txt
or WordPress.org for changelog