I’m trying to feed checkbox values from a Gravity Forms form (which creates a new post) into an Advanced Custom Fields field. I’ve had a read around and found some info in a post (at the bottom of the question).
Is this the correct way to do it? It’s not inserting the multiple GF checkboxes into the ACF textbox. Should I be creating checkboxes with the same options in ACF? Here’s my code:
add_action("gform_post_submission", "acf_post_submission", 10, 2);
function acf_post_submission ($entry, $form)
{
$post_id = $entry["post_id"];
$values = get_post_custom_values("submit_intended", $post_id);
update_field("field_23", $values, $post_id);
}
I’ve also tried the following which relates to the screenshots:
add_action("gform_post_submission", "checkbox_arrays", 10, 2);
function checkbox_arrays($entry, $form)
{
$post_id = $entry["post_id"];
$form_id = $entry["form_id"];
if ($form_id==3)
{
$values = get_post_custom_values("submit_gf_intended", $post_id);
add_post_meta($post_id, "submit_intended", $values);
}
}
This post in the advanced custom fields forum may help – http://support.advancedcustomfields.com/discussion/544/acf-and-gravity-forms/p1
I’ve attached some screenshots too.