Hey team,
Got a new form using the Dropzone element.
I gave it the name pet_image
accepting all file formats (it was having issues being specific)
Max files - 1
Under actions I first have a File Upload action (toggled allow multiple on and off, and have it working now), and then a Post Create action with meta fields mapping to my ACF Fields.
My ACF fields are all populating with the exception of this image field. I think I have the value wrong when mapping it. It could be my ACF field settings too. Can you help me with the Value format to get the submitted image added to the image ACF Field?
Values I tried:
{{ form.data({“key”:“pet_image.0.id”}) }}
{{ form.data({“key”:“pet_image.0”}) }}
{{ form.data({“key”:“pet_image.id”}) }}
{{ form.data({“key”:“pet_image”}) }}


