Hi Mr. pkirk,
The procedure below describes how you can check the current value for the “enabled” setting of the lockout notification.
First enable the extra Debug page by adding the line below to the WordPress wp-config.php file:
define('ITSEC_DEBUG', true);
Then simply navigate to the Security > Debug menu option.
In the Settings section select “notification-center” from the drop-down list and then click on the Load button.
Under “notifications” look for “lockout” and then verify the boolean value for “enabled”.
If the value is false no new lockout notifications will be send.
Why?
Because the callback that sends the lockout notification (email) FIRST checks the current value of the “enabled” setting and only when that value equals to true it will continue sending the email. Otherwise (false) the callback execution ends (return;).
+++++ To prevent any confusion, I’m not iThemes +++++