Title: Delete Form Fields
Last modified: August 21, 2016

---

# Delete Form Fields

 *  Resolved [Mark Max Henckel](https://wordpress.org/support/users/sommerinhamburg/)
 * (@sommerinhamburg)
 * [12 years, 4 months ago](https://wordpress.org/support/topic/delete-form-fields/)
 * Hi,
 * sorry, but I do not understand how I can customize the comment form.
    Need a 
   different wording and delet the URL field.
 * Thanks for help and your good work!
 * [https://wordpress.org/plugins/comment-guestbook/](https://wordpress.org/plugins/comment-guestbook/)

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

 *  Plugin Author [mibuthu](https://wordpress.org/support/users/mibuthu/)
 * (@mibuthu)
 * [12 years, 4 months ago](https://wordpress.org/support/topic/delete-form-fields/#post-4579334)
 * This is not possible yet, but I’m already working on it and a new version with
   this feature will be released soon.
 *  [brit77](https://wordpress.org/support/users/brit77/)
 * (@brit77)
 * [12 years, 3 months ago](https://wordpress.org/support/topic/delete-form-fields/#post-4579528)
 * In case anyone is still looking to remove a field (until the feature is included)…
 * I was able to remove the Website/URL field by adding the following to functions.
   php
 *     ```
       //Remove Comments Website Field
       add_filter( 'genesis_comment_form_args', 'url_filtered' );
       add_filter( 'comment_form_default_fields', 'url_filtered' );
       function url_filtered( $fields ) {
   
       if ( isset( $fields['url'] ) )
       unset( $fields['url'] );
   
       if ( isset( $fields['fields']['url'] ) )
       unset( $fields['fields']['url'] );
   
       return $fields;
       }
       ```
   
 *  Plugin Author [mibuthu](https://wordpress.org/support/users/mibuthu/)
 * (@mibuthu)
 * [12 years, 3 months ago](https://wordpress.org/support/topic/delete-form-fields/#post-4579535)
 * Hiding the email or website field is now possible in the new version 0.6.2.

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

The topic ‘Delete Form Fields’ is closed to new replies.

 * ![](https://s.w.org/plugins/geopattern-icon/comment-guestbook_ebebeb.svg)
 * [Comment Guestbook](https://wordpress.org/plugins/comment-guestbook/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/comment-guestbook/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/comment-guestbook/)
 * [Active Topics](https://wordpress.org/support/plugin/comment-guestbook/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/comment-guestbook/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/comment-guestbook/reviews/)

## Tags

 * [from](https://wordpress.org/support/topic-tag/from/)

 * 3 replies
 * 3 participants
 * Last reply from: [mibuthu](https://wordpress.org/support/users/mibuthu/)
 * Last activity: [12 years, 3 months ago](https://wordpress.org/support/topic/delete-form-fields/#post-4579535)
 * Status: resolved