Skip to content

Instantly share code, notes, and snippets.

@mikeyarce
Last active August 29, 2015 14:17
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 mikeyarce/bd2e7c5bd524d2db8bb3 to your computer and use it in GitHub Desktop.
Save mikeyarce/bd2e7c5bd524d2db8bb3 to your computer and use it in GitHub Desktop.
Custom Contact Form Success Message - Jetpack
function ma_change_grunion_success_message( $msg ) {
global $contact_form_message;
return '<h3>' . 'My custom success message' . '</h3>' . wp_kses($contact_form_message, array('br' => array(), 'blockquote' => array()));;
}
add_filter( 'grunion_contact_form_success_message', 'ma_change_grunion_success_message' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment