Skip to content

Instantly share code, notes, and snippets.

@travislima
Created June 1, 2016 14:34
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 travislima/810682f3165fea2eb2600d71157e6cdd to your computer and use it in GitHub Desktop.
Save travislima/810682f3165fea2eb2600d71157e6cdd to your computer and use it in GitHub Desktop.
PMPro - Hide TOS Page for Free Level
<?php
//copy lines 4 - 14 into your theme's functions.php or custom plugin
function my_option_pmpro_tospage( $option ){
global $pmpro_level;
//hide the TOS link if free level
if( pmpro_isLevelFree($pmpro_level) ){
$option = false;
}
return $option;
}
add_filter('option_pmpro_tospage', 'my_option_pmpro_tospage', 10, 2);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment