Title: Remove link box from comments
Last modified: August 10, 2018

---

# Remove link box from comments

 *  [jeffocal](https://wordpress.org/support/users/jeffocal/)
 * (@jeffocal)
 * [7 years, 9 months ago](https://wordpress.org/support/topic/remove-link-box-from-comments/)
 * Is there a way I can remove the link box from the comments section all posts 
   on my Imagineser’s Chronical blog.
 * Thank you
 * Jeff
 * The page I need help with: _[[log in](https://login.wordpress.org/?redirect_to=https%3A%2F%2Fwordpress.org%2Fsupport%2Ftopic%2Fremove-link-box-from-comments%2F%3Foutput_format%3Dmd&locale=en_US)
   to see the link]_

Viewing 1 replies (of 1 total)

 *  Moderator [t-p](https://wordpress.org/support/users/t-p/)
 * (@t-p)
 * [7 years, 9 months ago](https://wordpress.org/support/topic/remove-link-box-from-comments/#post-10579873)
 * Try using this in your theme’s functions.php file:
 *     ```
       // Remove comment form fields - e.g., remove Comment Websites (url) field
       add_filter('comment_form_default_fields', 'wpsites_remove_website_url_field');
       function wpsites_remove_website_url_field($fields) {
       if(isset($fields['url']))
       unset($fields['url']);
       return $fields;
       }
       ```
   
 * But be aware that your customizations will be over-written the next time you 
   upgrade. For this reason, consider creating a [Child Theme](https://developer.wordpress.org/themes/advanced-topics/child-themes/).

Viewing 1 replies (of 1 total)

The topic ‘Remove link box from comments’ is closed to new replies.

 * In: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
 * 1 reply
 * 2 participants
 * Last reply from: [t-p](https://wordpress.org/support/users/t-p/)
 * Last activity: [7 years, 9 months ago](https://wordpress.org/support/topic/remove-link-box-from-comments/#post-10579873)
 * Status: not resolved

## Topics

### Topics with no replies

### Non-support topics

### Resolved topics

### Unresolved topics

### All topics
