Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save michaelbeil/7ced03fda2cceaa4f325d86bcdeacdf8 to your computer and use it in GitHub Desktop.
Save michaelbeil/7ced03fda2cceaa4f325d86bcdeacdf8 to your computer and use it in GitHub Desktop.
Change the default Username text to First and Last Name Only
<?php
/**
* This recipe will change the default Username text to First and Last Name Only
*
* You can add this recipe to your site by creating a custom plugin
* or using the Code Snippets plugin available for free in the WordPress repository.
* Read this companion article for step-by-step directions on either method.
* https://www.paidmembershipspro.com/create-a-plugin-for-pmpro-customizations/
*/
function mypmpro_change_username_text( $translated, $text, $domain ){
if( $text == 'Username or Email Address' || $text == 'Username' ){
$text = 'First and Last Name Only ';
}
return $text;
}
add_filter( 'gettext', 'mypmpro_change_username_text', 10, 3 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment