Word Blocking Requests
-
Hi there!
I have some words a client wants blocked to prevent spam or unwanted emails in a contact form. reCaptcha has helped a lot, but a few annoying emails are still coming through.
I’m finding the “Keyword Based Restriction” doesn’t work, unless the keyword is the only word in the text box. I’m not sure if that’s intentional or a bug?I ended up using the Advanced Form Validation. Because one abbreviation might show up within other words, I had to use regex matching via
\b[Ww][Oo][Rr][Dd]\b
to cover it, as opposed to just checking for “contains”. It’d be nice if there was case-sensitive option for regex, or some word check option that would cover it without writing regex.It would also be great if, instead of showing an error message to the user, the form appeared to submit but didn’t. Is that possible?
The one way I can think to do it is to add conditionals to the email notifications and integrations individually. That’s a lot of work. Plus, the regex matching wouldn’t work since there isn’t a way to say “don’t match this” with it.
Am I missing something? Or do you have any advice?
- The topic ‘Word Blocking Requests’ is closed to new replies.