Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save ronalfy/2e343c2315cc62342927d6eb2f214dad to your computer and use it in GitHub Desktop.
Save ronalfy/2e343c2315cc62342927d6eb2f214dad to your computer and use it in GitHub Desktop.
Paid Memberships Pro Text Replacement for pmpro_account Shortcode
<?php
function pmpro_level_cost_text_son( $text ) {
$text = str_replace( ' maintenant', '', $text );
return $text;
}
add_filter( 'pmpro_level_cost_text', 'pmpro_level_cost_text_son', 10, 1 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment