Plugin Directory

Changeset 3184424


Ignore:
Timestamp:
11/08/2024 12:54:50 PM (17 months ago)
Author:
clearoutio
Message:

elementor form issue fix

Location:
clearout-email-validator
Files:
20 added
3 edited

Legend:

Unmodified
Added
Removed
  • clearout-email-validator/trunk/plugin.php

    r3177739 r3184424  
    44 * Plugin URL:   https://developer.wordpress.org/plugins/clearout-email-validator
    55 * Description:  This plugin seamlessly integrated with all major forms to validate the user's given email address in real-time. Under the hood, this plugin use Clearout API to perform 20+ refined validation checks to determine the status of the email address, and thus helps capturing only the valid leads to maintain high quality mailing list.
    6  * Version:      3.1.5
     6 * Version:      3.1.6
    77 * Author:       Clearout.io
    88 * Author URI:   https://clearout.io
     
    1414
    1515// plugin version.
    16 define( 'CLEAROUT_PLUGIN_VERSION', '3.1.5' );
     16define( 'CLEAROUT_PLUGIN_VERSION', '3.1.6' );
    1717define( 'CLEAROUT_RESULT_CACHED_TIMEOUT', 3600 );
    1818define( 'CLEAROUT_BASE_API_URL', 'https://api.clearout.io/v2/' );
     
    3232
    3333require_once ABSPATH . 'wp-admin/includes/plugin.php';
     34require_once dirname( __FILE__ ) . '/src/helper.php';
    3435require_once dirname( __FILE__ ) . '/src/clearout-plugin.php';
    3536require_once dirname( __FILE__ ) . '/src/clearout-validator.php';
    3637require_once dirname( __FILE__ ) . '/src/clearout-plugin-page-settings.php';
     38
    3739register_activation_hook( __FILE__, 'co_hook_plugin_activate' );
    3840register_deactivation_hook( __FILE__, 'co_hook_plugin_deactivate' );
  • clearout-email-validator/trunk/readme.txt

    r3177777 r3184424  
    55Requires at least: 4.6
    66Tested up to: 6.5.5
    7 Stable tag: 3.1.5
     7Stable tag: 3.1.6
    88License: GPLv2 or later
    99Block invalid emails like temporary, disposable, etc. with our real-time email verification. Verify email address during form-fill and stop form spam.
     
    354354* Minor Optimizations
    355355* Added safe to send option
     356= 3.1.6 =
     357* Minor Fixes
  • clearout-email-validator/trunk/src/clearout-validator.php

    r3177739 r3184424  
    285285    // Check to See if req is from ADmin Pages? If so return immediately, we dont want to ev
    286286    // the Strpos check is introduced to make sure even if Rest API is called from admin page it shud not trigger EV
    287     if ( (is_admin() || strpos($page_url, get_admin_url()) === 0) && CLEAROUT_TEST_PLUGIN_SOURCE != $clearout_form_source ) {
     287    // Use the custom is_admin_request() function to check if in the admin context
     288    if ( is_admin_request()  && CLEAROUT_TEST_PLUGIN_SOURCE != $clearout_form_source ) {
    288289        return $clearout_validation_result;
    289290    }
Note: See TracChangeset for help on using the changeset viewer.