Skip to content

Instantly share code, notes, and snippets.

@andrewlimaza
Created April 15, 2021 12:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save andrewlimaza/87d2468e728365942d69942ba93e3265 to your computer and use it in GitHub Desktop.
Save andrewlimaza/87d2468e728365942d69942ba93e3265 to your computer and use it in GitHub Desktop.
Remove the word "now" from Paid Memberships Pro level cost text.
<?php
/**
* Hide the word "now" from the level cost text (price) of a membership level.
* If you need more functionality, consider using this Add On - https://www.paidmembershipspro.com/add-ons/pmpro-custom-level-cost-text/
* Add this code to your site by following - https://www.paidmembershipspro.com/create-a-plugin-for-pmpro-customizations/
*/
function my_remove_now_from_cost_text( $cost, $level, $tags, $short ) {
$cost = str_replace(" now", "", $cost);
return $cost;
}
add_filter( 'pmpro_level_cost_text', 'my_remove_now_from_cost_text', 10, 4 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment