Created
March 6, 2020 22:18
-
-
Save ronalfy/2e343c2315cc62342927d6eb2f214dad to your computer and use it in GitHub Desktop.
Paid Memberships Pro Text Replacement for pmpro_account Shortcode
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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