Support

Account

Home Forums Front-end Issues acf_form 'field_groups' order Reply To: acf_form 'field_groups' order

  • Hi @amritdeepkaur

    Another method would be adding the form one by one with form option set to false. Maybe something like this:

    <form id="post" class="acf-form" action="" method="post">
    
        <?php
        acf_form(array(
            'field_groups' => array(77),
            'form' => false,
        ));
        acf_form(array(
            'field_groups' => array(8),
            'form' => false,
        ));
        ?>
    
        <div class="field">
            <input type="submit" value="Update">
        </div>
        
    </form>

    But the easiest way would be using the PRO version instead as you will get better features.

    Thanks 🙂