Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save dwanjuki/26828ae0e7e480fefa355539b8349872 to your computer and use it in GitHub Desktop.
Save dwanjuki/26828ae0e7e480fefa355539b8349872 to your computer and use it in GitHub Desktop.
Remove the Shipping Address from PMPro emails
<?php
/**
* Remove the Shipping Address from PMPro emails
*
* 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/
*/
function my_pmpro_email_body_remove_shipping_address() {
remove_filter( 'pmpro_email_body', 'pmproship_pmpro_email_body', 10, 2 );
}
add_action( 'init', 'my_pmpro_email_body_remove_shipping_address' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment