Last active
March 27, 2023 19:31
-
-
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
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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 ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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/