Skip to content

Instantly share code, notes, and snippets.

@kimcoleman
Last active March 27, 2023 19:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save kimcoleman/3f07be6ff8b734e57d2a2469d998add7 to your computer and use it in GitHub Desktop.
Save kimcoleman/3f07be6ff8b734e57d2a2469d998add7 to your computer and use it in GitHub Desktop.
Filter the settings of email frequency when using the Extra Expiration Warning Emails Add On
<?php
/**
* Filter the settings of email frequency sent when using the Extra Expiration Warning Emails Add On
* https://www.paidmembershipspro.com/add-ons/extra-expiration-warning-emails-add-on/
*
* Update the $settings array to your list of number of days => ''.
* Read the Add On documentation for additional customization using this filter.
*/
function custom_pmproeewe_email_frequency( $settings = array() ) {
$settings = array(
60 => '',
30 => '',
10 => '',
);
return $settings;
}
add_filter( 'pmproeewe_email_frequency_and_templates', 'custom_pmproeewe_email_frequency', 10, 1 );
@laurenhagan0306
Copy link

This recipe is included in the blog post on "Send Membership Expiration Notices 30, 60 and 90 days Prior" at Paid Memberships Pro here: https://www.paidmembershipspro.com/send-membership-expiration-notices-30-60-90-days-prior/

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