Отключение ссылки и подсказки по фильтрам под формой комментария.

function THEME_form_comment_form_alter(&$form) {
  $form['comment_body']['#after_build'][] = '_unset_comment_tips_configure_comment_form';
}

function _unset_comment_tips_configure_comment_form($form) {
  if(isset($form['widget'][0]['format']['help'])) {
    unset($form['widget'][0]['format']['help']);
    unset($form['widget'][0]['format']['guidelines']);
  }
  return $form;
}