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');
Questions and Comments are Welcome