If you only allow EDD customers to register, and a non-customer tries to register, they will see this message:
“Sorry, but your email address is not recognized as a customer email. Please try the email address that you used to make a purchase.”
You can change that text with the following filter. Change “Not You!” on line 5 to your own custom text.
/**
* Change the notice when non-customer tries to register
*/
function my_eddstix_not_customer_notice( $greeting ) {
return 'Not You!';
}
add_filter('eddstix_not_customer_notice', 'my_eddstix_not_customer_notice');
Questions and Comments are Welcome