I'm trying to convert our lead generation form to a Multi-Step Form to increase conversions. Ideally, the form would save info as the user progresses through the pages. For example, enter name and email on p.1 -> store as a draft submission -> enter phone and authorize SMS on p. 2 -> update draft submission -> etc...
Is it possible to configure a Multi-Step Form that way? So far I've found Save and Continue Partial Submissions, but that only applies to logged in users. My users will not be logged in. In my testing, no data gets saved to the entry until I complete all required fields on all pages.
Ranjeet, did you ever get an answer to this? I'm trying to do something similar.
<p>Just Victor's response below. As a workaround, I put some javascript in Formidable / My Form / Settings / Customize HTML / After Fields to post the fields to another form when the user clicks "Next". <script>document.addEventListener('DOMContentLoaded', function() { // Select the button using its class name const nextButton = document.querySelector('.frm_button_submit[formnovalidate="formnovalidate"]'); // Add event listener to the button if (nextButton) { nextButton.addEventListener('click', function(event) { // save fields to another form } else { console.error('Next button not found'); }; });</script></p>
Thanks for the response - this is helpful. I've been looking for an action that fires when the user submits the first page of a multi-part form. I may try something like.