Plugin Directory

Changeset 3464512


Ignore:
Timestamp:
02/18/2026 04:31:41 PM (6 weeks ago)
Author:
clearoutio
Message:

forminator form thowing error if it has a hidden email field

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

Legend:

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

    r3460861 r3464512  
    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.3.0
     6 * Version:      3.3.1
    77 * Author:       Clearout.io
    88 * Author URI:   https://clearout.io
     
    1414
    1515// plugin version.
    16 define( 'CLEAROUT_PLUGIN_VERSION', '3.3.0' );
     16define( 'CLEAROUT_PLUGIN_VERSION', '3.3.1' );
    1717define( 'CLEAROUT_RESULT_CACHED_TIMEOUT', 3600 );
    1818define( 'CLEAROUT_BASE_API_URL', 'https://api.clearout.io/v2/' );
  • clearout-email-validator/trunk/readme.txt

    r3460861 r3464512  
    44Tags: email verifier, email checker, email verification, email validation, woocommerce
    55Requires at least: 4.6
    6 Tested up to: 6.8.1
    7 Stable tag: 3.3.0
     6Tested up to: 6.9.1
     7Stable tag: 3.3.1
    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.
     
    373373= 3.3.0 =
    374374* Introduced blocking unknown email support
     375= 3.3.1 =
     376* Minor Fix
  • clearout-email-validator/trunk/src/clearout-validator.php

    r3460861 r3464512  
    10991099    // Empty email check, in case user doesnt prevent empty submission in form.
    11001100    if ( empty( $email ) ) {
    1101         return esc_html__( 'Email field is empty' );
     1101        return $submit_errors;
    11021102    }
    11031103    // Get option settings to know which validator is been called.
Note: See TracChangeset for help on using the changeset viewer.