From their site
The code recipe below turns off this user notification (admin_change.html) You can turn off additional user notification emails by changing or adding to line 6.
COPY CODE
/*
Disable the "Admin Change" emails in Paid Memberships Pro
*/
function my_pmpro_email_recipient($recipient, $email)
{
if($email->template == "admin_change" || $email->template == "admin_change_admin") //could check for a different template here
$recipient = NULL;
return $recipient;
}
add_filter("pmpro_email_recipient", "my_pmpro_email_recipient", 10, 2);
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
---
@ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.