Skip to content

Instantly share code, notes, and snippets.

@mynameispj
Last active August 29, 2015 13:56
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 mynameispj/9165042 to your computer and use it in GitHub Desktop.
Save mynameispj/9165042 to your computer and use it in GitHub Desktop.
Get Drupal 7 comment forms to display error messages on the original node's page
function yourmodule_form_alter(&$form, &$form_state, $form_id) {
if ($form_id == 'comment_node_blog_post_form') {
$form['actions']['submit']['#value'] = 'Add Your Comment';
$form['#action'] = '?'. drupal_get_destination();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment