Skip to content

Instantly share code, notes, and snippets.

@dparker1005
Last active December 12, 2022 18:30
Show Gist options
  • Save dparker1005/1f97ce867194311f6e6e4e6ad9a53782 to your computer and use it in GitHub Desktop.
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.
<?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