Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zackkatz/ce252f82efb2662ed8aaefd3509a57b3 to your computer and use it in GitHub Desktop.
Save zackkatz/ce252f82efb2662ed8aaefd3509a57b3 to your computer and use it in GitHub Desktop.
Modify the body content of a note
<?php
add_action( 'plugins_loaded', function() {
add_filter( 'gravityview/field/notes/email_content', 'gv_modify_notes_email_content', 10, 4 );
}, 20 );
/**
* Modify the email content
*
* @param array $email_settings
*
* @return array $email_settings Modified array, with message wrapped in <h2>
*/
function gv_modify_notes_email_content( $email_settings ) {
$email_settings['message'] = '<h2>' . $email_settings['message'] . '</h2>';
return $email_settings;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment