Forked from strangerstudios/my_pmpro_no_charge_membership_site.php
Last active
August 3, 2021 19:59
-
-
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
This file contains hidden or 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 // 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