I am verify data after things are submitted. (to prevent hacking radio buttons) If my logic senses a problem how do I send them back to the form to fix things up.
Thanks
Scott
I am verify data after things are submitted. (to prevent hacking radio buttons) If my logic senses a problem how do I send them back to the form to fix things up.
Thanks
Scott
Hi Scott,
If you are looking to return the form object itself, you'll want to use the gform_pre_submission_filter. This works identically to the gfrom_pre_submission action except that it expects the modified (or unmodified) form object to be returned.
If you are looking to modify the entry values, you can access and make changes to them through PHPs global $_POST variable.
Hope that helps.