EDD Support Tickets

Change Text On Notice When Non-Customer Tries To Register

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');

Updated on December 6, 2017

Questions and Comments are Welcome

Your email address will not be published. All comments will be moderated.

Please wrap code in "code" bracket tags like this:

[code]

YOUR CODE HERE 

[/code]