Skip to content

Instantly share code, notes, and snippets.

@ronalfy
Last active March 31, 2020 18:41
Show Gist options
  • Save ronalfy/5f869abda14b6fa026bc37bf9f6a85db to your computer and use it in GitHub Desktop.
Save ronalfy/5f869abda14b6fa026bc37bf9f6a85db to your computer and use it in GitHub Desktop.
Paid Memberships Pro - Hide Discount Code for Level
<?php
function my_pmpro_hide_discount_code_for_level( $show ) {
if ( empty( $_REQUEST['level'] ) ) {
return false;
}
if ( 1 === absint( $_REQUEST['level'] ) || 2 === absint( $_REQUEST['level'] ) ) { // 1,2 is the level ID.
return false;
}
return $show;
}
add_filter( 'pmpro_show_discount_code', 'my_pmpro_hide_discount_code_for_level' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment