Skip to content

Instantly share code, notes, and snippets.

@strangerstudios
Last active August 29, 2015 14:06
Show Gist options
  • Save strangerstudios/93d651b664e06d554eaf to your computer and use it in GitHub Desktop.
Save strangerstudios/93d651b664e06d554eaf to your computer and use it in GitHub Desktop.
Enable iflychat for Paid Memberships Pro members only.
function my_iflychat_check_access_filter($access)
{
if(!is_admin() && function_exists("pmpro_hasMembershipLevel") && !pmpro_hasMembershipLevel())
$access = false;
return $access;
}
add_filter('iflychat_check_access_filter', 'my_iflychat_check_access_filter');
@mika909
Copy link

mika909 commented Nov 20, 2014

Hi strangerstudios, can you tell me in which file I put this code ?

Thank's

mika

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment