Чтобы скрыть выбор формата ввода в комментариях добавьте в template.php:
function mytheme_form_comment_form_alter(&$form, &$form_state) {
$form['comment_body']['#after_build'][] = 'mytheme_customize_comment_form';
}
function mytheme_customize_comment_form(&$form) {
$form[LANGUAGE_NONE][0]['format']['#access'] = FALSE;
return $form;
}
