Support

Account

Home Forums Front-end Issues How to show ACF Repeater in front end form Reply To: How to show ACF Repeater in front end form

  • Hi @madhan2085

    You can show the repeater field like showing the other fields. You can also set the ‘fields’ option to show only certain fields like this:

    acf_form(array(
        'fields' => array('field_1234567890abc', 'field_abcdefghij123'),
    ));

    Where ‘field_1234567890abc’ and ‘field_abcdefghij123’ are the field keys.

    I hope this helps 🙂