Hi,
are you there? Your plugin is an excellent idea, but it’s not doing anything now.
]]>Is this plugin Compatible to BuddyPress
Mitch
Would be great for it to be compatible with bbPress.
]]>The reason I ask is that I have a spam email sign up for a clients website – the email was [email protected]. When I search for that email address in google it has been shown to be spam.
On my demo website with wooocommerce I installed this plugin and then tried to register with that email address. The first time the screen stays the same – no error message or anything. So I tried to register again using the same email and it was allowed.
So the first time the registration was not allowed but the second time it was. I tried this several times on my demo website with the same result.
This is why I’m asking the question whether it should work with woocommerce?
Cheers,
Karen
This would be great with Contact Form 7 Integration.
]]>Would be interested in having you add MemberPress as an integration. I’ve written the code for you even:
function lelandf_stop_signup_spam_mepr( $errors ) {
$email = is_email($_POST['user_email']) ? $_POST['user_email'] : false;
if ( $email !== false ) {
$ip = lelandf_stop_signup_spam_get_ip();
if ( lelandf_is_signup_spam( $email, $ip ) ) {
$errors[] = __( 'Sorry, but something went wrong. Please contact us for further assistance.', 'stop-signup-spam' );
}
}
return $errors;
}
add_filter( 'mepr-validate-signup', 'lelandf_stop_signup_spam_mepr' );
Let me know if/when it’s added, thanks!
]]>