Skip to content

Instantly share code, notes, and snippets.

@LMNTL
Created August 12, 2019 17:41
Show Gist options
  • Save LMNTL/51d9da70ba6ffd1437f3d3482fabb751 to your computer and use it in GitHub Desktop.
Save LMNTL/51d9da70ba6ffd1437f3d3482fabb751 to your computer and use it in GitHub Desktop.
Remove shipping address from PMPro-generated emails when using Shipping Add On
// Remove shipping address from PMPro-generated emails when using Shipping Add On
function my_pmproship_remove_email_filter()
{
remove_filter( "pmpro_email_body", "pmproship_pmpro_email_body", 10, 2 );
}
add_action( "init", "my_pmproship_remove_email_filter");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment