-
-
Save femiyb/6fa8b08136bf02bf411154cc1a1df7d8 to your computer and use it in GitHub Desktop.
Translate PMPro
This file contains hidden or 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 | |
| // Please add this code to your PMPro Customizations Plugin - https://www.paidmembershipspro.com/create-a-plugin-for-pmpro-customizations/ | |
| function my_pmpro_change_text($translated_text, $original_text, $domain) { | |
| switch ( $translated_text ) { | |
| case 'First Name' : | |
| $translated_text = __( 'Change First Name.', 'paid-memberships-pro' ); | |
| break; | |
| case 'Last Name' : | |
| $translated_text = __( 'Change Last Name.', 'paid-memberships-pro' ); | |
| break; | |
| } | |
| return $translated_text; | |
| } | |
| add_filter( 'gettext', 'my_pmpro_change_text', 10, 3 ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment