Plugin Directory

Changeset 3112109

Timestamp:
07/04/2024 05:32:16 AM (3 weeks ago)
Author:
kalprajsolutions
Message:

updated for Wordpress 6.6

Location:
user-registration-email-validator/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • user-registration-email-validator/trunk/readme.txt

    r3011932 r3112109  
    33Tags: user registration, is_email, user email checker, user registration email checker, email validator, email checker
    44Requires at least: 4.0
    5 Tested up to: 6.4.2
     5Tested up to: 6.
    66Stable tag: trunk
    7 Requires PHP: 7.0
     7Requires PHP: 7.
    88License: GPLv2 or later
    99License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    1515This plugin enables WordPress users to check their client’s email addresses on the registration form or any other form using is_email().
    1616Which is a WordPress function to check valid email addresses. Which helps to stop spam and promotional emails from your inbox.
    17 It will only allow a valid email address users to signup or any Email based activity.
     17It will only allow a valid email address users to signup or any Email based activity.
    1818
    1919This plugin is completely based on [emails-checker.net](https://emails-checker.net "emails-checker.net") third party api. Which will send your provided email address to emails checker api in order to validate it. [Emails Checker](https://emails-checker.net "Emails Checker") doesnot store anykind of data on their servers.
     
    3030* Mailbox existence checking
    3131* Catch-All Testing
    32 * Greylisting detection
     32* Greylisting detection
    3333* SMTP connection and availability checking
    3434
     
    7171== Changelog ==
    7272
     73
     74
     75
     76
    7377= 3.2 =
    7478* Updated for newer wordpress version 6.4.2
  • user-registration-email-validator/trunk/user-registration-email-validator.php

    r3011932 r3112109  
    6666
    6767                    // Wordpress Registration Form
    68                     if (isset($_POST['register'])) {
     68                    add_action('register_post', array($this, 'isEmail'), 10, 3);
     69                    // another method
     70                    if (isset($_POST['user_email']) && isset($_POST['wp-submit']) && $_POST['wp-submit'] == "Register") {
    6971                        add_filter('is_email', array($this, 'isEmail'), 1, 3);
    7072                    }
Note: See TracChangeset for help on using the changeset viewer.