Last active
February 1, 2023 13:59
-
-
Save champsupertramp/b06ba37410394b8f7a74a487f049d5cb to your computer and use it in GitHub Desktop.
Ultimate Member - Exclude specific emails from blocked email domains
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function um_020123_submit_form_errors_hook__exclude_blockedemails( $args ) { | |
$emails = UM()->options()->get( 'blocked_emails' ); | |
if ( ! $emails ) { | |
return; | |
} | |
$arr_excluded_emails = array( | |
"[email protected]", | |
"[email protected]", | |
); | |
if ( isset( $args['user_email'] ) && is_email( $args['user_email'] ) && in_array( $args['user_email'], $arr_excluded_emails ) ) { | |
// Disable blocking | |
remove_action( 'um_submit_form_errors_hook__blockedemails', 'um_submit_form_errors_hook__blockedemails', 10 ); | |
} | |
} | |
add_action( 'um_submit_form_errors_hook__blockedemails', 'um_020123_submit_form_errors_hook__exclude_blockedemails', 1 ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment