5 comments

If you are getting spam messages from Weebly’s contact form, you can try adding a reCAPTCHA to it.  This will make it more difficult for spam bots to submit spam messages.

Below are a few simple steps to add reCAPTCHA to your Weebly contact page:

1) Go to your Contact page and drag the Contact Form widget onto your page:

image

2) Once the widget has been placed on the form, click anywhere on the form and then click on “Form Options”. Turn on Google Captcha (by clicking on the circle so that it’s moved to the right) and then click on “Save”:

image

3) Click on the Publish button on the top right corner and proceed to view the Contact page using a new incognito window:

image

4) Please note that you can either use a new incognito window or clear your browser’s cookie in order to test the Contact page.  If you don’t do so, you won’t be able to see the Google Captcha.  Weebly will just allow you to submit the contact form without having to prove that you are a human.

5) Also, you will not see the regular “I’m not a robot” checkbox when the form first loads.  Instead, you will need to fill out the fields and then click on the “Submit” button in order to trigger the reCaptcha challenge:

image

6) Your message will only be submitted if you have successfully solved the challenge questions.

While adding a reCAPTCHA to your Weebly contact form will stop most of the spam bots from submitting spam messages, it will not stop actual humans from manually submitting spam messages. You can use Ivertech Spam Free Contact for Weebly to filter out spams submitted by humans using Artificial Intelligence.

0 comments

If you are getting spam messages from Wix’s contact form, you can try adding a reCAPTCHA to it.  This will make it more difficult for spam bots to submit spam messages.

Below are a few simple steps to add reCAPTCHA to your Wix contact form:

1) Go to your Contact page and click on the form.  Click on Add New Field, Anti Spam, and reCAPTCHA:

image

2) Once the reCAPTCHA field has been added to your form, make sure that it’s placed at the bottom (before the Submit button):

image

3) Publish the site and test the contact page.

4) If you click on the Submit button without checking the “I’m not a robot” checkbox, you will get a prompt that says “Please check this box if you want to proceed”:

image

While adding a reCAPTCHA to your Wix contact form will stop most of the spam bots from submitting spam messages, it will not stop actual humans from manually submitting spam messages. You can use Ivertech Spam Free Contact for Wix to filter out spams generated by humans using Artificial Intelligence.

0 comments

Has your Shopify contact page been bombarded with spam lately?  To stop spam posted by bots, one of the options is to add Google reCaptcha on your Contact Us page.

Google currently provides two versions of their reCaptcha: reCaptcha v2 and reCaptcha v3.  The difference between these two version is that v2 requires the user to click on the "I am not a robot" check box (Captcha challenge) while v3 does not. ReCaptcha v3 scores your user's traffic based on Google's proprietary algorithm and the site owner gets to determine what actions to take based on the score.

Google reCaptcha v2

There are not that many sites on the Internet that show you how to implement the Google reCaptcha v2 code.  If you Google search "Add reCaptcha to Shopify contact form", you will probably find some pages that show you how to first disable the "Send" button by adding a "disable" attribute:

<input type="submit" id="contactFormSubmit" value="Send" class="btn" disabled />

You can then add these lines of Javascript code to enable the "Send" button after the user passes the Captcha challenge:

<script src="https://www.google.com/recaptcha/api.js?onload=onloadCallback&render=explicit" async defer>
</script>

<script> var actCallback = function (response) { $('#contactFormSubmit').prop("disabled", false); }; var onloadCallback = function () { var widget = grecaptcha.render(document.getElementById("re-captcha"), { 'sitekey' : "123456789", // Sitekey generated from Google reCaptcha 'theme': "light", 'callback' : actCallback, }); } </script>

Here's how it's suppose to look like when implemented:

shopify-contact-us-recaptcha

The code above might have worked fine at one point.

However, Shopify has since implemented their own Google reCaptcha v2 on all contact forms (and there's no option to turn this off).  Whenever there are two submissions done from the same IP address within 24 hours, the user will be redirected to a "challenge#contact_form" page to complete the Captcha challenge:

shopify-recaptcha-challenge

This inteferes with the Javascript code mentioned above and the user will get a "Page not found" error after clicking on the "Send" button:

shopify-page-not-found

For Shopify site owners who want to implement Google reCaptcha v2 on their Contact Us page, don't waste your time trying the code above.  It will break your page and your customers won't be able to contact you.  Moreover, since Shopify already has their own Google reCaptcha v2 built-in, there's really no need for you to do redundant work.

Google reCaptcha v3

What about Google reCaptcha v3? Can we take advantage of this newer version of Google reCaptcha, which doesn't require any interaction from the user and is less intrusive?  Shopify site owners have already asked the same exact question on Shopify's Community: Adding Google reCaptcha v3 to the Shopify contact form.  It turns out that adding Google reCaptcha v3 is a lot simpler than v2.  All you need are these lines of Javascript code:

<script src="https://www.google.com/recaptcha/api.js?render=_reCAPTCHA_site_key"></script>
<script>
grecaptcha.ready(function() {
    grecaptcha.execute('_reCAPTCHA_site_key_', {action: 'homepage'}).then(function(token) {
    });
});
</script>


This is how it's supposed to look like after implementing the code:

shopify-recaptcha-v3

There's no button to disable, no Captcha challenge to display.  A piece of cake, right?  Well, not quite. 

It turns out the code doesn't really accomplish anything at all!  All it does is displaying the "protected by reCAPTCHA" icon at the lower right corner of the page.  There's supposed to be additional server code to retrieve a "score" from Google to figure out what action to take next.

If you go through all 5 pages from the Shopify Community thread above, you will see that the contributors to the thread were quite confused. They thought the Javascript code mentioned above was enough to trigger the "Captcha challenge" for Google reCaptcha v3.  They probably didn't realize that there's supposed to be no "Captcha challenge" for Google reCaptcha v3!  The user is not suppose to even see any "I'm not a robot" check box.

It's not possible to write additional server code on Shopify to evaluate the "score" from Google and redirect the user to the appropriate page. Shopify simply does not allow this kind of code for security reasons.  The whole topic on Adding Google reCaptcha v3 to the Shopify contact form is a waste of time!

The contributors on the thread probably didn't realize that the "Captcha challenge" was actually implemented by Shopify by default:

shopify-recaptcha-challenge

The "I'm not a robot" check box shows up regardless if the code for Goolge reCaptcha v3 was implemented or not!  It's odd that no Shopify Expert has stepped in and guided the lost souls to the right direction.  These poor Shopify site owners need to be told that Google reCaptcha v3 will never work on their Contact Us page. 

Conclusion

All the code samples that show you how to implement Google reCaptcha v2 or reCaptcha v3 don't really work.  Don't waste your time implementing any of them.  Since Shopify already has Google reCaptcha v2 built in, there's really no reason for you to implement your own.

But why are you still getting spam from your Contact Us page?  It turns out Google reCaptcha is only good at stopping bots from spamming your site.  If a human is sending you spam from your Contact Us page, there's nothing Google reCaptcha can do to stop that. 

Instead of forking out monthly fee for a Shopify app, you can open a free account at Ivertech Spam Free Contact and copy and paste one line of HTML code to stop spam. Ivertech Spam Free Contact has A.I. (Artificial Intelligence) built in to effectively filter spam, regardless if it's created by bots or humans.  It's a lot more efficient than most of the Shopify apps and it doesn't get interfered by the built-in reCaptcha from Shopify. 

And best of all, it's free!