Skip to content

Instantly share code, notes, and snippets.

@SeanChDavis
Created October 13, 2015 18:08
Show Gist options
  • Save SeanChDavis/91341861ff9a73c7af09 to your computer and use it in GitHub Desktop.
Save SeanChDavis/91341861ff9a73c7af09 to your computer and use it in GitHub Desktop.
EDD Email Receipt Remove HTML small Tags
<?php // DO NOT COPY THIS LINE
function sd_remove_small_tag_email_receipt( $message ) {
$small = array( '<small>', '</small>' );
$message = str_replace( $small, '', $message );
return $message;
}
add_filter( 'edd_email_message', 'sd_remove_small_tag_email_receipt' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment