Is it possible to modify the "Add another response" text in repeatable sections? When they are nested, they can get confusing for navigation. It would be nice to be able to modify them to state "Add another vehicle" or "Add another individual" etc.
Here's the documentation on how to change the text of the 'Add Another Response' link: http://app.formassembly.com/pages/support/customization/#lookandfeel
However, this doesn't work if your form has several repeated sections and you need a different text for each one. Let me know if that's your case, and we can consider a workaround.
I'd also like to be able to do this - i.e. add different "Add another xxxx" descriptions to several different sections? If there's a work-around of some description, could it be posted?
We'll be adding the possibility to customize the text in the next update to the form builder, coming soon.
The workaround is a bit complex. It involves inserting, in the Form, the HTML for your own link, which will prevent the default link from being generated.
The HTML code for the link must looks like this: <span class="duplicateSpan><a href="#" class="duplicateLink" id="set_this_id-wfDL">your custom text here</a></span>
You can insert this link using the "HTML" icon in the Form Builder's text editor (click the 'Add Text or Image' button to access the editor)
The tricky part is to determine the correct id attribute, which is derived from the id of the element to be repeated, with the '-wfDL' suffix. You can look at the HTML of your form to find that information: 1. Look for ' class="repeat" ' in the HTML 2. In the same tag, you should see a id="something" 3. The id for your link is 'something-wfDL'.
Again, this is quite a complex workaround, the upcoming update will easily take care of this.