Skip to content

Instantly share code, notes, and snippets.

@ipokkel
Created January 31, 2025 09:50
Show Gist options
  • Save ipokkel/a79de4aa64f8412cd39ea364dc89b9a0 to your computer and use it in GitHub Desktop.
Save ipokkel/a79de4aa64f8412cd39ea364dc89b9a0 to your computer and use it in GitHub Desktop.
<?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