Skip to content
Advertisement

Check if email exists in WordPress through Ajax on HTML form submision

In my WordPress v5.8.2, I have localized the ajax_url in the functions.php:

JavaScript

With the below jQuery script I am processing the form to check if the email ID from the HTML form is already existed in the WordPress:

JavaScript

Below the PHP code in separate file to check email:

JavaScript

The above entire code is not able to alert if email exists.

How can I make this code work?

Update #1

As per @Howard E advice, I found the PHP file that contained the email_exists_check() function was not loaded.

Now that the PHP file is loaded, I am not getting the actual email_exists status. For both existed and non-existed email, alert is always Email does not existed (data.result == false).

Seems the email_exists_check function itself is not loading. I checked the log with below code, and the response in either undefined or 0:

JavaScript

Advertisement

Answer

It was the wp_verify_nonce causing the issue.

This is how I have modified the code and is working fine in all aspects as expected:

JavaScript

Note the replacement of security with check_nonce in the data:.

Below the PHP code:

JavaScript

Note the if (wp_verify_nonce){} statement and the use of nonce.

User contributions licensed under: CC BY-SA
9 People found this is helpful
Advertisement