Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save andrewlimaza/0ef1df412576803afeefa70d8bd73d45 to your computer and use it in GitHub Desktop.
Save andrewlimaza/0ef1df412576803afeefa70d8bd73d45 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;
}
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