Skip to content

Instantly share code, notes, and snippets.

@femiyb
Last active December 15, 2022 22:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save femiyb/b182c3805562cea4482856b2b50c3018 to your computer and use it in GitHub Desktop.
Save femiyb/b182c3805562cea4482856b2b50c3018 to your computer and use it in GitHub Desktop.
Change text
<?php
// Add this code below to your PMPro Customizations plugin - http://www.paidmembershipspro.com/create-a-plugin-for-pmpro-customizations/
add_filter( 'gettext', 'change_my_text_example', 20, 3 );
/**
* @link http://codex.wordpress.org/Plugin_API/Filter_Reference/gettext
*/
function change_my_text_example( $translated_text, $text, $domain ) {
switch ( $translated_text ) {
case "Check your email for a link to reset your password." :
$translated_text = __( 'Translated text here', 'paid-memberships-pro' );
break;
}
return $translated_text;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment