Skip to content

Instantly share code, notes, and snippets.

@femiyb
Forked from andrewlimaza/translate-to-french.php
Last active July 27, 2020 19:12
Show Gist options
  • Select an option

  • Save femiyb/6fa8b08136bf02bf411154cc1a1df7d8 to your computer and use it in GitHub Desktop.

Select an option

Save femiyb/6fa8b08136bf02bf411154cc1a1df7d8 to your computer and use it in GitHub Desktop.
Translate PMPro
<?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