Skip to content

Instantly share code, notes, and snippets.

@strangerstudios
Created September 7, 2012 16:24
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save strangerstudios/3667545 to your computer and use it in GitHub Desktop.
Save strangerstudios/3667545 to your computer and use it in GitHub Desktop.
Disable All PMPro Emails
<?php
/*
Plugin Name: PMPro Disable All Emails
Plugin URI: http://www.paidmembershipspro.com/wp/pmpro-disable-all-emails/
Description: Disable All PMPro Emails
Version: .1
Author: Stranger Studios
Author URI: http://www.strangerstudios.com
Add this file to your /wp-content/plugins/ folder and then activate it from the Plugins page in your WP admin.
*/
/*
Disable all PMPro Emails
*/
function dae_pmpro_email_recipient($recipient, $email)
{
//if($email->template == "invoice") //use this to check for a certain template
$recipient = NULL;
return $recipient;
}
add_filter("pmpro_email_recipient", "dae_pmpro_email_recipient", 10, 2);
@Dromptar
Copy link

Dromptar commented Jun 1, 2023

Hello there ! Thank you for this great snippet. I have 2 questions "

  • I'm trying to block automatics mails to admins, not to users. How could we do that ?
  • Where can I find the name of a different template like here "invoice" if I want to disable other one ?

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