Skip to content

Instantly share code, notes, and snippets.

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 JarrydLong/04e605e429e41848a42b761b06188cf3 to your computer and use it in GitHub Desktop.
Save JarrydLong/04e605e429e41848a42b761b06188cf3 to your computer and use it in GitHub Desktop.
Hide discount code field on the PMPro checkout page for specified levels.
<?php
function hide_discount_code_field_for_specific_levels($show)
{
global $pmpro_level;
if( in_array( intval( $pmpro_level->id ), array(1,2) ) )
{
$show = false;
}
return $show;
}
add_filter('pmpro_show_discount_code', 'hide_discount_code_field_for_specific_levels');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment