Is there a gform_post_submission Per Each Form Step?
This template tag is cool, but only runs at the very submit of the entire form.
add_action("gform_post_submission", "my_complete_form_submission", 10, 2);
Is there something else like gform_post_submission where you can run something right after step1 or a different step of a form?
As an example lets say you have a form with 4 steps, and you want to basically save this partial data at the submit of step1..... or maybe you want to take everything and save it after step2?
Its good to store this data incase the form was not completed.
Hopefully I have just overlooked code for this and someone could help me here. :)