I've been successfully using Sanford Whiteman awesome overrider field order with FormsPlus. Thank you sooo much!
I have a rich text field (#mktcomm) that I would like to appear before the "Marketing Communications" select field. And of course, I want that field to appear below the progressive profiling fields. I have this line in my code to get the field to include in the field order: var formEl = form.getFormElem()[0], mktcommnotice = formEl.querySelector('#mktcomm');
It is working in that the div with the rich text is above Marketing Communications which is below the progressive fields. However, I need to be able to move the mktoRow the div is in, not just the div (otherwise the empty row is left behind causing extra empty space). I can't manage to get the right syntax. Can anyone help?
Here's an example page. To see the issue, just select an EMEA country such as Austria.
Thanks so much!
Sheila
Solved! Go to Solution.
Put an <input type="hidden" name="somethingMemorable"> field inside your Rich Text area. The name doesn't have to correspond to any field, it just creates a way of addressing the row. Then the row takes on the name of that input!
Put an <input type="hidden" name="somethingMemorable"> field inside your Rich Text area. The name doesn't have to correspond to any field, it just creates a way of addressing the row. Then the row takes on the name of that input!
I should have just asked this question 3 hours ago. Thank you so much! It's working now.