Hello,
Sorry for the late answer, I’m kinda busy with the upcoming patch lately.
This is really weird. In the video you posted, the main <div class="acf-fields acf-form-fields -top">
should also have the class acfe-column-wrapper
too. See video demo.
I would recommend to check your browser console (F12
on chrome), see if you don’t have any JS error, since columns are setup in javascript.
To make sure you don’t have any custom code that would interfere, I would recommend to setup a clean WP install with ACF Pro + ACF Extended only, and test the feature on it. If you prefer to keep your installation, then try to disable all your plugins one-by-one (at the exception of ACF Pro & ACF Extended) until you find which one cause the issue.
If the problem persists, I would suggest switch to the native WP Twenty Twenty Two theme, to make sure you don’t have any custom code in your theme that would break the feature.
In order to test it on a clean install:
Here is the Field Group json export of my video test, so you can import it with the “ACF > Tools” admin page.
Here is a simple code you can add to a page-acf-form.php
in your theme. Then simply publish a page called “ACF Form”, and visit it. You should have the same result as me.
<?php
acf_form_head();
get_header();
?>
<?php if(have_posts()): ?>
<?php while(have_posts()): the_post(); ?>
<h1><?php the_title(); ?></h1>
<?php
acf_form(array(
'field_groups' => array('group_638bbe4a53af7')
));
?>
<?php endwhile; ?>
<?php endif; ?>
<?php get_footer(); ?>
Let me know if you found something.
Have a nice day!
Regards.