Input field disappearing on submit

I’ve exported my code and am working on it externally, but I think Webflow does something to forms.

  1. It includes the fail/success message on submit, I’ve deleted that.
  2. It makes the input text box disappear – I need it to stay visible.

How can I solve this?

I found it. It’s in webflow.js:

// Show or hide status divs
data.done.toggle(success);
data.fail.toggle(!success);

// Hide form on success
form.toggle(!success);

Deleting this makes it stay.

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.