MemberPress: Require Coupon at Checkout
function mepr_must_fill_out_coupon_code( $errors ) { if( !isset($_POST[‘mepr_coupon_code’]) || empty($_POST[‘mepr_coupon_code’] ) ) { $errors[] = “You must fill out the Coupon code field before registering.”; } return $errors; } add_filter( ‘mepr_validate_signup’, ‘mepr_must_fill_out_coupon_code’, 11, 1 );Continue reading