Skip to content

Instantly share code, notes, and snippets.

@strangerstudios
Last active August 3, 2021 19:49
Show Gist options
  • Save strangerstudios/117afb8d03728e940cbf to your computer and use it in GitHub Desktop.
Save strangerstudios/117afb8d03728e940cbf to your computer and use it in GitHub Desktop.
Customizations to remove all mention of payments, fees, price, etc.
/*
Customizations to remove all mention of payments/fees/price for a 100% no-charge membership site.
*/
define("PMPRO_DEFAULT_LEVEL", "1");
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", 10, 2);
@laurenhagan0306
Copy link

This recipe is included in the blog post on "Remove All Mention of Price for a 100% No-Charge Membership Site" at Paid Memberships Pro here: https://www.paidmembershipspro.com/remove-all-mention-of-price-for-a-100-no-charge-membership-site/

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment