Plugin Directory

Changeset 3411051


Ignore:
Timestamp:
12/04/2025 02:22:29 PM (4 months ago)
Author:
clearoutio
Message:

fix for pmpro form

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

Legend:

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

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

    r3379447 r3411051  
    55Requires at least: 4.6
    66Tested up to: 6.8.1
    7 Stable tag: 3.2.3
     7Stable tag: 3.2.4
    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.
     
    367367= 3.2.3 =
    368368* Minor Fixes
     369= 3.2.4 =
     370* Minor Fixes
  • clearout-email-validator/trunk/src/clearout-validator.php

    r3239399 r3411051  
    588588                $pmpro_continue_registration = false;
    589589                if ( _check_custom_error_msg_exist( $clearout_options ) ) {
    590                     pmpro_setMessage( esc_html( $clearout_options['custom_invalid_error'] ) );
     590                    pmpro_setMessage( esc_html( $clearout_options['custom_invalid_error'] ), 'pmpro_error' );
    591591                } else {
    592592                    $error_message = _get_error_message( $validation_result['reason'] );
    593                     pmpro_setMessage( esc_html( $error_message ) );
     593                    pmpro_setMessage( esc_html( $error_message ), 'pmpro_error' );
    594594                }
    595595            }
Note: See TracChangeset for help on using the changeset viewer.