Last active
November 9, 2021 11:50
-
-
Save MaryOJob/a4bea730f2ea2cf3115e71dec66f98ff to your computer and use it in GitHub Desktop.
Replace "Email Address" with "Username or Email Address" on PMPro Login Form
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php // Do not copy this line please. Copy from below. | |
/** | |
* This filter will search your codebase for translatable strings and replace when an exact match is found. | |
* Replace "Email Address" with "Username or Email Address" on PMPro Login Form | |
* Add this code to your PMPro Customizations Plugin: https://www.paidmembershipspro.com/create-a-plugin-for-pmpro-customizations/ | |
*/ | |
add_filter( 'gettext', 'register_text' ); | |
function register_text( $translating ) { | |
$translated = str_ireplace( 'Username or Email Address', 'Username', $translating ); | |
return $translated; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment