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/bf06b652fc2bd9722e9b690f87b4c5e9 to your computer and use it in GitHub Desktop.
Save JarrydLong/bf06b652fc2bd9722e9b690f87b4c5e9 to your computer and use it in GitHub Desktop.
Change 'Choose your Payment Method' in Paid Memberships Pro
<?php
/**
* This code is used to change 'Choose your Payment Method' text in Paid Memberships Pro.
* Add the function into your PMPro Customizations plugin - http://www.paidmembershipspro.com/create-a-plugin-for-pmpro-customizations/
*/
function change_choose_your_payment( $translated_text, $text, $domain ) {
switch ( $translated_text ) {
case 'Choose your Payment Method' :
$translated_text = __( 'Change this text', 'pmpro' );
break;
case 'Payment Information' :
$translated_text = __( 'Change this text too', 'pmpro' );
break;
}
return $translated_text;
}
//@link http://codex.wordpress.org/Plugin_API/Filter_Reference/gettext
add_filter( 'gettext', 'theme_change_comment_field_names', 20, 3 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment