Customize comment form
-
Hi,
i’m setting up a website with untitled theme.
Is a terrific theme and oi love it.
Now i have a little problem.
I’d like to change the comment form for all posts…Show only comment field and title leave a reply…
I use this snipet on funxtions to remove the fields…
/* Modifiche al comment form */
function remove_comment_fields($fields) {
unset($fields[‘author’]);
unset($fields[’email’]);
unset($fields[‘url’]);
return $fields;
}
add_filter(‘comment_form_default_fields’,’remove_comment_fields’);But i also want to delete the form-allowed-tags div to delete also this part. And diminuishing the comment form field width.
Comments.php isn’t my file but where can i find the right file to do this?
Gabriele
- The topic ‘Customize comment form’ is closed to new replies.