MemberPress 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!
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
- The topic ‘MemberPress Integration’ is closed to new replies.