Force display name to nickname wp

Hi Guys in response to further details on my answer, so basically i searched for plugin solutions in preference to adding code (i am not a developer) and found a plugin that does the job very well called change display name publicly as. Hope this feedback is relevant and helpful. many thanks, J

Modifying the Default Registeration Page?

Both modifying the fields and the styling of the user registration (as well as login, lost password, etc. pp.) page can be done programmatically as well as using plugins. The latter obviously being the much simpler way of achieving quick results. While I’m all for control and doing things on our own, in this case … Read more

Custom user registration

You can create and page and assign template to that page. Some Demo of registration url i am sending. http://www.cozmoslabs.com/1012-wordpress-user-registration-template-and-custom-user-profile-fields/ http://www.tutorialstag.com/create-custom-wordpress-registration-page.html

Registration area + reserved area

Paste this into your functions.php file and edit according to comments. add_filter(‘login_redirect’, ‘redirect_user’, 10); function redirect_user(){ global $user; //where you want to redirect users too $redirect = home_url() . ‘/where-do-we-go-from-here/’; /* * each role listed in this array will be redirect to above URL * if you only have one user role to redirect then … Read more

Register form how to get Total Control of it

Copy this function and modify it as per your needs. function custom_register_new_user( $user_login, $user_email ) { $errors = new WP_Error(); $sanitized_user_login = sanitize_user( $user_login ); $user_email = apply_filters( ‘user_registration_email’, $user_email ); // Check the username if ( $sanitized_user_login == ” ) { $errors->add( ’empty_username’, __( ‘<strong>ERROR</strong>: Please enter a username.’ ) ); } elseif ( … Read more