Removing 'success' window after completing a submission

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?


Here is my site Read-Only: LINK
(how to share your site Read-Only link)

Hello @vitaminwater, welcome to the community!

Have you tried giving your success message an opacity of 0?

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.