I am using the GF Advanced Post Creation addon. I have a numerous simple fields mapped to ACF custom fields using a basic function…
add_action('gform_advancedpostcreation_post_after_creation_1', 'my_gf_new_organization', 10, 4);
function my_gf_new_organization($post_id, $feed, $entry, $form) {
update_post_meta( $post_id, 'event_date', $entry['13'] );
update_post_meta( $post_id, 'event_time', $entry['14'] );
update_post_meta( $post_id, 'location', $entry['15'] );
}
However, I now need to add a (multiple) File Upload Pro field to an ACF gallery custom field.
Where on Earth do I begin?!
Antar