Skip to content

Instantly share code, notes, and snippets.

@ipokkel
Last active October 10, 2023 16:01
Show Gist options
  • Save ipokkel/05f0a444e40d1c8cc28fa126f4ea98e4 to your computer and use it in GitHub Desktop.
Save ipokkel/05f0a444e40d1c8cc28fa126f4ea98e4 to your computer and use it in GitHub Desktop.
Replace "Your Level" with a custom text string using the Gettext filter.
<?php
/**
* This recipe will change the text "Your Level" to your preferred text.
*
* You can add this recipe to your site by creating a custom plugin
* or using the Code Snippets plugin available for free in the WordPress repository.
* Read this companion article for step-by-step directions on either method.
* https://www.paidmembershipspro.com/create-a-plugin-for-pmpro-customizations/
*/
function gettext_pmpro_your_level_change_text( $output_text, $original_text, $domain ) {
if ( 'paid-memberships-pro' === $domain ) {
switch ( $original_text ) {
case 'Your&nbsp;Level':
$output_text = __( 'Current Membership', 'paid-memberships-pro' ); // change this to whatever you want.
break;
}
}
return $output_text;
}
add_filter( 'gettext', 'gettext_pmpro_your_level_change_text', 20, 3 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment