Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save MaryOJob/f0c9e6cea12392235c25db5c820b76b7 to your computer and use it in GitHub Desktop.
Save MaryOJob/f0c9e6cea12392235c25db5c820b76b7 to your computer and use it in GitHub Desktop.
Customizations to remove all mention of payments, fees, price, etc for SPECIFIC LEVELS ONLY
<?php // do not copy this line
/*
* Customizations to remove all mention of payments/fees/price for a 100% no-charge membership site.
* Add this to a PMPro customizations or Code Snippets Plugin: https://www.paidmembershipspro.com/create-a-plugin-for-pmpro-customizations/
*/
function my_pmpro_level_cost_text($text, $level) {
if(pmpro_isLevelFree($level))
return "";
else
return $text;
}
add_filter("pmpro_level_cost_text", "my_pmpro_level_cost_text", 1, 2, 3 ); // replace 1, 2, 3 with the ID of your membership levels
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment