MyBB Community Forums

Full Version: PM disabled
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I'm looking for a mod that means even when someone has PMs disabled, admins can still send them.

So basically they would only send/receive PM's to and from admins and it would be disabled from everyone else.

Would this be possible?
Hi,

You can try if this works - I haven't tested this to confirm it working, but it should work.
In /inc/datahandlers/pm.php
Find:
$touser['receivepms'] == "no"
And replace with
$touser['receivepms'] == "no" && $sender_permissions['cancp'] != "yes"
Hope that helps.