Support

Account

Home Forums ACF PRO Submitted images not retrieved in acf_form Reply To: Submitted images not retrieved in acf_form

  • Hi @beee

    Could you please make sure that you use the acf_form() function on the newly created post template (single.php)? If you don’t use it there, could you please make sure that you set the post_id option with the newly created post ID like this:

    acf_form(array(
        'post_id' => 99,
    ));

    Where ’99’ is the newly created post ID.

    If you have done it but still have the issue, could you please make sure that you have added the acf_form_head() function on top of your header?

    If still no joy, could you please share the JSON or XML export file of your field group and the code you used to show the forms so I can test it out on my installation?

    Thanks 🙂