Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save JarrydLong/e27a68bbb8098db281fb0943fa74266c to your computer and use it in GitHub Desktop.
Save JarrydLong/e27a68bbb8098db281fb0943fa74266c to your computer and use it in GitHub Desktop.
<?php
function mypmpro_change_membership_checkout_text( $translated_text, $text, $domain ) {
switch ( $translated_text ) {
case 'You have selected the <strong>%s</strong> membership level.':
$translated_text = __( 'Thank you for selecting <strong>%s</strong>.', 'pmpro' );
break;
}
return $translated_text;
}
add_filter( 'gettext', 'mypmpro_change_membership_checkout_text', 20, 3 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment