I’m attempting to set up a fairly long multi-part form (~50 questions, a few questions per page) with conditional logic. I’d like to offer registered visitors the ability to save their data between each page/step and give them the option to return later to finish.
I have Gravity Forms and thought that might work, but it sounds like this isn’t functionality they offer yet.
Does anyone have any advice/suggestions on other form plugins or code which might meet these requirements? Thanks in advance for all your help!
If you are working on a custom theme, I believe it is easier to be done with a page template and WordPress’s wp_ajax function.
The form can be included in the page using
<?php get_template_part('form','0f-50-question') ?>
.Here is the pseudo code for the form
And for the php that will process the file
Hope this help