Created
January 16, 2017 15:16
-
-
Save rafaehlers/b85b748c2373e0a4763c24f67ca69ee3 to your computer and use it in GitHub Desktop.
Modify the body content of a note
This file contains hidden or 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
add_filter( 'gravityview/field/notes/email_content', 'gv_modify_notes_email_content', 10, 4 ); | |
function gv_modify_notes_email_content( $email_settings ) { | |
extract( $email_settings ); | |
$email_settings['message'] = '<h2>'.$message.'</h2>'; | |
return $email_settings; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment