Support

Account

Home Forums Add-ons Options Page Save global options from front end form Reply To: Save global options from front end form

  • Hi @harnessmedia

    Yes, that’s possible. You can do it by providing the post_id and field_groups option like this:

    <?php acf_form(array(
        'post_id' => 'option',
        'field_groups' => array(99),
    )); ?>

    Where “99” is the ID of your field group.

    I hope this helps 🙂