Support

Account

Home Forums Add-ons Repeater Field Create an ACF Front end of a nested repeater Field

Solving

Create an ACF Front end of a nested repeater Field

  • I have a Nested Repeater field in a Custom Post that I need to Show in the Front-end. I have already created a front end form but it does not show any of the values from the back end. I have uploaded the screenshot of the field and the output.

  • Hi @ongbjason

    acf_form_head() needs to go above your form.

    Are there other fields you need to hide, hence calling the form via fields rather than field groups?

    Just wondering if you can switch to field groups to test it.

  • Already did Jarvis but if Switch it to field group other fields do Show their values except for the nested repeater fields. even added the acf_form_head() on my snippet.

    `acf_form_head();
    $post = get_post();
    acf_form(array(
    ‘post_id’ =>$post->ID,
    ‘fields’ => array(‘field_617a3f34983fa’),
    ‘submit_value’ => ‘APPLY’,
    ));

    ?>’

Viewing 3 posts - 1 through 3 (of 3 total)

You must be logged in to reply to this topic.