Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,10 @@

### Fluent Forms

### Gravity Forms

### Forminator

## Advance Features

* Able to trigger adCAPTCHA on the "Place order" button.
Expand Down
4 changes: 2 additions & 2 deletions adcaptcha.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
/**
* Plugin Name: adCAPTCHA for WordPress
* Description: Secure your site. Elevate your brand. Boost Ad Revenue.
* Version: 1.6.0
* Version: 1.7.0
* Requires at least: 6.4.2
* Requires PHP: 7.4
* Author: adCAPTCHA
Expand All @@ -21,7 +21,7 @@

use AdCaptcha\Instantiate;

const PLUGIN_VERSION_ADCAPTCHA = '1.6.0';
const PLUGIN_VERSION_ADCAPTCHA = '1.7.0';
define('ADCAPTCHA_ERROR_MESSAGE', __( 'Please complete the I am human box.', 'adcaptcha' ));

if ( ! function_exists( 'adcaptcha_uninstall' ) ) {
Expand Down
9 changes: 8 additions & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Contributors: adCAPTCHA
Tags: spam, anti-spam, block bots, security, adCAPTCHA
Requires at least: 6.0
Tested up to: 6.5.2
Stable tag: 1.6.0
Stable tag: 1.7.0
Requires PHP: 7.4
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Expand Down Expand Up @@ -46,6 +46,10 @@ adCAPTCHA offers a unique proposition in the digital space by combining Security

**Fluent Forms**

**Gravity Forms**

**Forminator**

== Advance Features ==

**Woocommerce**
Expand Down Expand Up @@ -157,3 +161,6 @@ During verification, the adCAPTCHA service may briefly receive the user's IP add

= 1.6.0 =
- Added feature to disable the WooCommerce checkout endpoint.

= 1.7.0 =
- Feature: Added support for Gravity Forms and Forminator.
6 changes: 3 additions & 3 deletions src/Instantiate.php
Original file line number Diff line number Diff line change
Expand Up @@ -89,11 +89,11 @@ public function setup() {
'Forminator_Forms' => [
'instance' => Forminator::class,
'plugin' => [ 'forminator/forminator.php' ],
],
'GravityForms_Forms' => [
'instance' => GravityForms::class,
'plugin' => [ 'gravityforms/gravityforms.php' ],
],
'plugin' => [ 'gravityforms/gravityforms.php' ]
]
];

$selected_plugins = get_option('adcaptcha_selected_plugins') ? get_option('adcaptcha_selected_plugins') : array();
Expand Down
2 changes: 1 addition & 1 deletion src/Settings/Settings.php
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,6 @@ public function change_admin_footer_text() {
}

public function change_admin_footer_version() {
return 'Version 1.6.0';
return 'Version 1.7.0';
}
}