Last active
December 12, 2022 18:30
-
-
Save dparker1005/1f97ce867194311f6e6e4e6ad9a53782 to your computer and use it in GitHub Desktop.
Send admin checkout emails when using the PMPro Multiple Memberships per User 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 | |
// Copy from below here... | |
/** | |
* Send admin checkout emails when using the PMPro Multiple Memberships per User Add On. | |
* | |
* You can add this recipe to your site by creating a custom plugin | |
* or using the Code Snippets plugin available for free in the WordPress repository. | |
* Read this companion article for step-by-step directions on either method. | |
* https://www.paidmembershipspro.com/create-a-plugin-for-pmpro-customizations/ | |
*/ | |
add_filter( 'default_option_pmpro_email_admin_checkout', '__return_true' ); | |
add_filter( 'option_pmpro_email_admin_checkout', '__return_true' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment