Magento – how I can activate ReCAPTCHA

captchamagento2

Though we can activate captcha in our Magento 2 store but being recaptcha offers more security would like to know How can I install and enable reCAPTCHA in my Magento 2 Store.

Best Answer

The best - in my opinion - module for Magento 2, giving you fully-configurable ReCaptcha with invisible mode to avoid conversion loss is MageSpecialist one available for free on GitHub: https://github.com/magespecialist/m2-MSP_ReCaptcha

To install it, you just need to:

composer require msp/recaptcha
php bin/magento setup:upgrade

Then generate public and secret key at Google: https://www.google.com/recaptcha/admin and put it in an Admin Panel (Stores / Configuration / Security Suite / Google reCaptcha)

Related Topic