Support

Account

Home Forums Front-end Issues profile_update hook and acf frontend form Reply To: profile_update hook and acf frontend form

  • Still not working. I use acf_form() to update a user profile in frontend…

    acf_form_head() is set and my form looks like:

    $groups = array( 1, 2, 3, 4 );

    acf_form(array(
      'post_id' => 'user_' . get_current_user_id(),
      'field_groups' => $groups,
    ));

    Fields are saving perfect, but field “network_public” does not update. field network_public is an field in a field_group in the acf_form.

    The script for set network_public to false, is the same as above (posted recently from me).