Created
February 24, 2020 08:03
-
-
Save andrewlimaza/cc30cf628a31805a40fe62d14a2309ae to your computer and use it in GitHub Desktop.
Automatically approve, previously approved members. [Paid Memberships Pro]
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Automatically approve any previously approved member. | |
* Add this code to your site following this guide - https://www.paidmembershipspro.com/create-a-plugin-for-pmpro-customizations/ | |
*/ | |
function my_pmpro_automatically_approve_previously_approved( $level_id, $user_id, $cancelled_level ) { | |
if ( ! class_exists( 'PMPro_Approvals' ) ) { | |
return; | |
} | |
if ( ! PMPro_Approvals::requiresApproval( $level_id ) ) { | |
return; | |
} | |
$prev_approved = get_user_meta( $user_id, 'pmpro_approval_log', true ); | |
if ( is_array( $prev_approved) && ! empty( $prev_approved ) ) { | |
// Approve member if they have previously been approved. | |
foreach( $prev_approved as $approval_string ) { | |
if ( strpos( $approval_string, 'approved' ) !== false ) { | |
// Let's approve the member | |
PMPro_Approvals::approveMember( $user_id, $level_id ); | |
break; | |
} | |
} | |
} | |
} | |
add_action( 'pmpro_after_change_membership_level', 'my_pmpro_automatically_approve_previously_approved', 10, 3 ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment