Skip to content

Instantly share code, notes, and snippets.

@kraftbj
Created May 19, 2014 20:20
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 kraftbj/1606dd1b230526082776 to your computer and use it in GitHub Desktop.
Save kraftbj/1606dd1b230526082776 to your computer and use it in GitHub Desktop.
Customize Jetpack Comment Form Success Message
add_filter ('grunion_contact_form_success_message', "my_success_message");
function my_success_message( $r_success_message) {
$r_success_message = "<h3>Thank you! We will respond shortly.</h3>";
return $r_success_message;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment