Title: Comment Form Modification
Last modified: August 20, 2016

---

# Comment Form Modification

 *  [sofaking21](https://wordpress.org/support/users/sofaking21/)
 * (@sofaking21)
 * [14 years, 6 months ago](https://wordpress.org/support/topic/comment-form-modification-1/)
 * I’ve been troubleshooting problems with the visual media editor for about a month
   now. I finally found the problem. Below is the code I have in a plugin in the
   mu-plugins folder to modify the comments form for all the sites on my multinetwork
   install.
 *     ```
       <?php
       /*
       Plugin Name:  Comment Form Mod Plugin
       Description:  Plugin written to remove Website field and HTML tags field
       */
   
       function remove_extraneous_fields() {
       	add_filter('comment_form_defaults','mynetworkmod_comments_form_defaults');
       	add_filter('comment_form_default_fields', 'remove_comment_url_field');
       }
       add_action('after_setup_theme', 'remove_extraneous_fields');
       function mynetworkmod_comments_form_defaults($default) {
       	unset($default['comment_notes_after']);
       	return $default;
       }
       function remove_comment_url_field($fields) {
       	unset($fields['url']);
       	return $fields;
       }
       ?>
       ```
   
 * This plugin works at doing what I want, but it also destroys the ability to crop
   and rotate photos. Any thoughts?

The topic ‘Comment Form Modification’ is closed to new replies.

 * In: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
 * 0 replies
 * 1 participant
 * Last reply from: [sofaking21](https://wordpress.org/support/users/sofaking21/)
 * Last activity: [14 years, 6 months ago](https://wordpress.org/support/topic/comment-form-modification-1/)
 * Status: not resolved

## Topics

### Topics with no replies

### Non-support topics

### Resolved topics

### Unresolved topics

### All topics
