Skip to content

Instantly share code, notes, and snippets.

@kimwhite
Last active April 11, 2024 09:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save kimwhite/2facb9a217689b1e8ec3e9af82c6d9c1 to your computer and use it in GitHub Desktop.
Save kimwhite/2facb9a217689b1e8ec3e9af82c6d9c1 to your computer and use it in GitHub Desktop.
Discount Code for Members Only
<?php // do not copy this line.
/**
* This recipe does allows you to make a discount code for existing members only.
*
* You can add this recipe to your site by creating a custom plugin
* or using the Code Snippets plugin available for free in the WordPress repository.
* Read this companion article for step-by-step directions on either method.
* https://www.paidmembershipspro.com/create-a-plugin-for-pmpro-customizations/
*/
function my_pmpro_check_discount_code($okay, $dbcode, $level_id, $code)
{
if ( strtolower( $code ) == "YOURCODEHERE" && ! pmpro_hasMembershipLevel() ) {
return 'You must be a member to use that discount code.';
}
return $okay;
}
add_filter('pmpro_check_discount_code', 'my_pmpro_check_discount_code', 10, 4);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment