Repeater filed not working

Formidable Forms
6 October, 2020 23:48:07
palash
Topics: 1
Messages: 2
Hi,

I have created a repeater filed and when the user adds values on the repeater field only the first value comes in pdf other values are not showing in pdf but it's showing on Formidable form entries, so can you help me with this.

Thanks
Palash
6 October, 2020 23:54:58
E2Pdf
Support
Topics: 7
Messages: 3163
Hi,

To show repeater values you must use one of the following solutions:

- Show it separately:

[101:1] - where 101 is Field ID and 1 is repeater number.

So to output 2nd repeater entry it must be used [101:2], 3rd [101:3] and so on...

- Show all repeater entries:

You can use Formidable Forms repeater construction as described here https://formidableforms.com/knowledgebase/repeatable-section/#kb-display-data-grouped-by-row:

[foreach 100]
[101]: [102], [103]
[/foreach]

If you will use 2nd option to output all repeater values with E2Pdf "HTML" object it's recommended to "Disable WYSIWYG Editor" (screenshot attached).

We remain at your service.
We would really appreciate your feedback at WordPress.org!
7 October, 2020 00:22:34
palash
Topics: 1
Messages: 2
Thanks a lot.