I’m currently using a form on my Webflow site, and I want to prevent the success message from appearing after submission. Instead of showing the default “Thank you for your submission” message, I need the form to stay visible so users can continue entering new queries without interruption.
I’ve already tried setting .w-form-done { display: none !important; } in custom code, but the success message still briefly appears before hiding. Is there a built-in setting or workaround within Webflow to fully disable or bypass the success message?
You can use custom CSS to force it open, but it will still contain the content the user previously entered, and it will be a little confusing as to whether it has submitted.
The way I build solutions like this is custom code to control the form UX, plus a custom webhook handler so that I can determine a successful, complete submission. You’re basically fully taking over the form in this situation.
Hope you got your use-case solved. For future readers, you can implement a customized version of this memberscript in order to not show the success message upon form submission and also reset the form so that the user can fill the form again without any issues.