Advertisement
Guest User

Untitled

a guest
Apr 26th, 2018
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. //Fix to block pending users from viewing any access
  2. function gw_pmpro_has_membership_level($hasaccess, $user_id, $levels)
  3. {
  4. //if they don't have access, ignore this
  5. if(!$hasaccess)
  6. return $hasaccess;
  7.  
  8. $hasaccess = ! pmpropbc_isMemberPending($user_id);
  9. return $hasaccess;
  10. }
  11. add_filter("pmpro_has_membership_level", "gw_pmpro_has_membership_level", 10, 3);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement