EDD Support Tickets

Change The Greeting For Newly Registered Users

When a user is newly registered by the plugin, a greeting message will appear that says, “Your account has been successfully created. You can now submit a support ticket.”

You can change that text with the following filter. Change “Welcome, New User!” on line 5 to your own custom text.

/**
 * Change the greeting for newly registered users.
 */
function my_eddstix_welcome_new_user( $greeting ) {
	return 'Welcome, New User!';
}
add_filter('eddstix_welcome_new_user', 'my_eddstix_welcome_new_user');

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]