Hi,
I am writing a plugin to post-process form data using a gform_after_submission hook.
I am after several specific fields that will appear across multiple forms (but not always in the same placement)
Is there any way (during form creation) to create a field name/ID to be a static value that the plugin can always find, so that it does not need to be updated every-time a new form is added (or changed)
As an Example, the phone number of this form is the first field, but on other forms it it the 3rd field & 11th field. I'd like to use the same line of code to get all of them regardless of the field position.
$phoneNum = ($_POST['input_1']);
hope this makes sense.
Thanks!
-Ed