where do i put this code?
is it in the functions.php?
i’m also having the same issue in my front end form.
if you can put some light on the code you posted it will be great help for me.
here is my thread
http://support.advancedcustomfields.com/forums/topic/genesis-and-texonomy-field-issue/
Thanks in advance.
@m3ndi3
you need to add id of your title field in $post array like this.
'post_title' => $_POST['fields']['field_53b5105fc69e0'],
you can find the field id by checking the element in firebug.
which ACF version you are using if its below ver.5 then use
'post_id' => 'new',
instead of
'post_id' => 'new_post',
its a plugin conflict issue.
just disable other plugins one by one and check your form. you will find the culprit.
@Matteo@matteo.legittimo
this working fine for image upload, but how do i use it to set it as “”featured image”
i’m not familiar with ACF codes.
thanks in advance.