Support Forum

Ability to Enable / Restrict Ability to PM Usergroups

MV Matt Vitelli
Matt Vitelli
Member

Hi Guys,

Wanted to see if i was missing this or not.  I dont want my standard users to have the ability to PM the entire user group that they are in.  Admins/ Moderators should be able to send theses types of messages.  Let me know if this is possible or not and if so how to do it.

Thanks,

MattV.

3 Answers

New Answer

MP Mr Papa
Mr Papa
Member

that ability is limited to admins…  if you wanted to allow for moderators, you would need to use the filter ‘sph_pm_email_special’ and return true for admins and mods…  something like:

add_filter('sph_pm_email_special', 'my_special_pm_permission');
function my_special_pm_permission($perm) {
    global $spThisUser;
    return ($spThisUser->admin || $spThisUser->moderator); 
}