Created
January 31, 2025 09:50
-
-
Save ipokkel/a79de4aa64f8412cd39ea364dc89b9a0 to your computer and use it in GitHub Desktop.
This file contains 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 | |
/** | |
* Remove punctuation from Level Cost Text for "now. starting". | |
* | |
* 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 my_pmprosd_level_cost_text_punctuation( $cost, $level, $tags, $short ) { | |
if ( function_exists( 'pmprosd_level_cost_text' ) && strpos( $cost, 'now. starting' ) !== false ) { | |
$cost = str_replace( 'now. starting', 'now starting', $cost ); | |
} | |
return $cost; | |
} | |
add_filter( 'pmpro_level_cost_text', 'my_pmprosd_level_cost_text_punctuation', 15, 4 ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment