Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save JarrydLong/6c4bb9a110ad9996daa5a242e81a2a0d to your computer and use it in GitHub Desktop.
Save JarrydLong/6c4bb9a110ad9996daa5a242e81a2a0d to your computer and use it in GitHub Desktop.
<?php //do not copy
function mypmpro_remove_level_will_be_removed_text($translated_text, $text, $domain) {
if( $domain == "paid-memberships-pro" ) {
if( $text == "Your current membership level of %s will be removed when you complete your purchase." ) {
$translated_text = "";
}
}
return $translated_text;
}
add_filter( 'gettext', 'mypmpro_remove_level_will_be_removed_text', 20, 3 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment