Hi all, I was wondering if we could limit form submission on Custom Form, i.e. one response per person.
How would we do that?
Thanks in advance.
Hi all, I was wondering if we could limit form submission on Custom Form, i.e. one response per person.
How would we do that?
Thanks in advance.
I’ll let others reply with more native possibilities, but you could set a cookie on form submission, then not allow form submission if that cookie exists (or hide form). This wont stop someone from opening an incognito window and re-submitting though.
If they’re a logged in user, you could potentially store this against some metadata associated with the user and then hide the form is the user = x metadata.
It’s going to be for a public-facing website, so the cookie solution seems to be the right choice.
Thanks for that, I’ll look into it.