clabanz
(Carl)
July 10, 2022, 7:13am
1
My search skills aren’t up for the task. I just keep finding things about the unsubscribe link…
I’m just using a form button as a trigger for a Make automation. It’s not collecting any information that I need to be emailed about.
How can I make a specific form not email me every time? I still want the general email functionality for other forms, like a contact form.
1 Like
mww
(Milan )
July 11, 2022, 2:11am
2
Hi @clabanz ,
You could try setting the Form Action on the button to ’ / ', this should prevent the form submission from going through. Basically if you add anything as a Form Action, it will circumvent the Webflow Form Handler.
Otherwise you could look at adding some custom code to disable the form submission:
Hi, Webflowers
I was thinking about improving UX in my builds, so I started Googling how to disable submit button until all (required) fields/inputs are filled in. Maybe I did a bad research but I did not find a solution — some related stuff yes, though the suggested code is hit a bit different solutions.
Hence, my question: how to do it in Webflow? It is indeed a great UX decision (sometimes at least) to allow users to submit a button until they complete a form.
Thank you I’m advan…
Hi @LeWolf ,
You could try something like this in Page Settings > Custom Code > Footer Code:
<script>
$('#form').submit(function() {
return false;
});
</script>
You’ll need to replace the form ID in $(‘#form’).
Let me know how you go! Would be great if you could send read-only link if you need further assistance.
Cheers