Title: Comments html
Last modified: August 19, 2016

---

# Comments html

 *  Resolved [smoothb1](https://wordpress.org/support/users/smoothb1/)
 * (@smoothb1)
 * [15 years, 5 months ago](https://wordpress.org/support/topic/comments-html/)
 * How would i get rid of the name, email and website section and the html tags 
   and attributes? I have looked in single.php and index.php and cannot find it.
 * [http://originbmx.com/videos/team-soil/#respond](http://originbmx.com/videos/team-soil/#respond)

Viewing 8 replies - 1 through 8 (of 8 total)

 *  [Rev. Voodoo](https://wordpress.org/support/users/rvoodoo/)
 * (@rvoodoo)
 * [15 years, 5 months ago](https://wordpress.org/support/topic/comments-html/#post-1859428)
 * comments.php seems like a reasonable place to look for a comment form!
 * Yours may be there, or you may simply use comment_form to display the form
 * Here’s info about working with comment_form
 * [http://devpress.com/blog/using-the-wordpress-comment-form/](http://devpress.com/blog/using-the-wordpress-comment-form/)
 *  [Clayton James](https://wordpress.org/support/users/claytonjames/)
 * (@claytonjames)
 * [15 years, 5 months ago](https://wordpress.org/support/topic/comments-html/#post-1859431)
 * Take a look in the comments.php file and see if there is anything there you need
   to comment out or remove.
 *  Thread Starter [smoothb1](https://wordpress.org/support/users/smoothb1/)
 * (@smoothb1)
 * [15 years, 5 months ago](https://wordpress.org/support/topic/comments-html/#post-1859717)
 * I have tried this but can’t find it still 🙁
 *  [Clayton James](https://wordpress.org/support/users/claytonjames/)
 * (@claytonjames)
 * [15 years, 5 months ago](https://wordpress.org/support/topic/comments-html/#post-1859723)
 * Have you tried;
 *  Dashboard > Settings > Discussion > un-check the box that says “Comment author
   must fill out name and e-mail ” , save your changes and see if that does it?
 *  Thread Starter [smoothb1](https://wordpress.org/support/users/smoothb1/)
 * (@smoothb1)
 * [15 years, 5 months ago](https://wordpress.org/support/topic/comments-html/#post-1859731)
 * That was already unticked do i need to change this?
 *     ```
       <?php comment_form(
       array(
       	'comment_field'        => '<p class="comment-form-comment"><label for="comment">' . __( 'Comment', 'jenny' ) . '</label><textarea id="comment" name="comment" cols="45" rows="8" aria-required="true"></textarea></p>',
       	'comment_notes_after'  => '<p class="form-allowed-tags">' . sprintf( __( '', 'jenny' ), ' <code>' . allowed_tags() . '</code>' ) . '</p>',
       	'id_form'              => 'commentform',
       	'id_submit'            => 'submit',
       	'title_reply'          => __( 'Leave a Comment', 'jenny' ),
       	'cancel_reply_link'    => __( '(Cancel Reply)', 'jenny' ),
       	'label_submit'         => __( 'Submit', 'jenny'),
       )
       ); ?>
       ```
   
 *  [Clayton James](https://wordpress.org/support/users/claytonjames/)
 * (@claytonjames)
 * [15 years, 5 months ago](https://wordpress.org/support/topic/comments-html/#post-1859764)
 * Give this a try:
 *     ```
       <?php comment_form(
       array(
               'fields'               => apply_filters( 'comment_form_default_fields', $fields ),
       	'comment_field'        => '<p class="comment-form-comment"><label for="comment">' . __( 'Comment', 'jenny' ) . '</label><textarea id="comment" name="comment" cols="45" rows="8" aria-required="true"></textarea></p>',
       	'comment_notes_before' => '<p class="comment-notes">' .  ( $req ? __( ' Required fields are marked <span class="required">*</span>', 'jenny' ) : '' ) . '</p>',
       	'comment_notes_after'  => '<p class="form-allowed-tags">' . sprintf( __( '', 'jenny' ), '' ) . '</p>',
       	'id_form'              => 'commentform',
       	'id_submit'            => 'submit',
       	'title_reply'          => __( 'Leave Your Comment', 'jenny' ),
       	'cancel_reply_link'    => __( '(Cancel Reply)', 'jenny' ),
       	'label_submit'         => __( 'Submit', 'jenny'),
       )
       ); ?>
       ```
   
 * That might work, if I’ve done it correctly,
 * Thank you [Otto](http://ottopress.com/2010/wordpress-3-0-theme-tip-the-comment-form/).
 *  Thread Starter [smoothb1](https://wordpress.org/support/users/smoothb1/)
 * (@smoothb1)
 * [15 years, 5 months ago](https://wordpress.org/support/topic/comments-html/#post-1859766)
 * Yes thankyou so much! It has worked finally 🙂
 *  [Clayton James](https://wordpress.org/support/users/claytonjames/)
 * (@claytonjames)
 * [15 years, 5 months ago](https://wordpress.org/support/topic/comments-html/#post-1859767)
 * You’re welcome.

Viewing 8 replies - 1 through 8 (of 8 total)

The topic ‘Comments html’ is closed to new replies.

 * In: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
 * 8 replies
 * 3 participants
 * Last reply from: [Clayton James](https://wordpress.org/support/users/claytonjames/)
 * Last activity: [15 years, 5 months ago](https://wordpress.org/support/topic/comments-html/#post-1859767)
 * Status: resolved

## Topics

### Topics with no replies

### Non-support topics

### Resolved topics

### Unresolved topics

### All topics
