scriptua/magento2-invisible-captcha 2.0.4

Type

magento2-module

License

GPL-3.0-or-later

Requires
Requires (dev)

None

Suggests

None

Provides

None

Conflicts

None

Replaces

None

Google Invisible Captcha v3 for magento 2

Latest Stable Version Total Downloads PayPal donate button Latest Unstable Version License Scrutinizer Code Quality Build Status

Module version 2.0.* support Magento 2.3.*
Module version 1.0.* support Magento 2.1.*||2.2.*

Installation Guide

Install by composer

composer require scriptua/magento2-invisible-captcha
bin/magento module:enable Hryvinskyi_Base
bin/magento module:enable Hryvinskyi_InvisibleCaptcha
bin/magento setup:upgrade

Install download package

  1. Download module https://github.com/hryvinskyi/magento2-base "Clone or download -> Download Zip"
  2. Download this module "Clone or download -> Download Zip"
  3. Unzip two modules in the folder app\code\Hryvinskyi\Base and app\code\Hryvinskyi\InvisibleCaptcha
  4. Run commands:
bin/magento module:enable Hryvinskyi_Base
bin/magento module:enable Hryvinskyi_InvisibleCaptcha
bin/magento setup:upgrade
  1. Configure module in admin panel

General Settings

To get the access to the 'Invisible Captcha' settings please go to Stores -> Configuration -> Hryvinskyi Extensions -> Google Invisible Captcha and expand the General Settings section.

Enable invisible captcha: Enable or disable the extension from here.
Site Key: Enter the site key you have got while registering for reCAPTCHA v3.
Secret Key: Enter the secret key you have got while registering for reCAPTCHA v3.
URLs to Enable: Enter the URLs to enable Google Invisible reCAPTCHA on.
Selectors for Forms: Add form selectors to enable Google Invisible reCAPTCHA on.

Develop usage

require([
    'jquery',
    'reCaptcha'
], function ($) {
    $('form').reCaptcha();
});