Title: Remove Information From Under Comments
Last modified: August 20, 2016

---

# Remove Information From Under Comments

 *  Resolved [Submersed](https://wordpress.org/support/users/submersed/)
 * (@submersed)
 * [13 years, 1 month ago](https://wordpress.org/support/topic/remove-information-from-under-comments/)
 * Hi, I need to remove this text from under the comments:
 *     ```
       You may use these HTML tags and attributes:
       <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>
       ```
   
 * Can you please point me to the .php file and code I need to modify.
 * Thank You,

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

 *  Theme Author [nobita](https://wordpress.org/support/users/nobita/)
 * (@nobita)
 * [13 years, 1 month ago](https://wordpress.org/support/topic/remove-information-from-under-comments/#post-3584518)
 * Hi Submersed
 * Please try below code.
 * functions.php add first line `<?php` before.
 *     ```
       <?php
       	add_filter( 'comment_form_defaults', 'my_remove_comment_notes_after' );
       	function my_remove_comment_notes_after( $default ){
       	/*
       	 * form-allowed-tags will be removed
       	 *
       	 */
       		$default['comment_notes_after'] = '';
       		return $default;
       	}
       ?>
       ```
   
 * Thank you.
 *  Thread Starter [Submersed](https://wordpress.org/support/users/submersed/)
 * (@submersed)
 * [13 years, 1 month ago](https://wordpress.org/support/topic/remove-information-from-under-comments/#post-3584574)
 * Thanks, worked perfectly.
 *  [kashmier](https://wordpress.org/support/users/kashmier/)
 * (@kashmier)
 * [12 years, 9 months ago](https://wordpress.org/support/topic/remove-information-from-under-comments/#post-3584779)
 * Thanks for this one, it worked perfect. Just to make it clear when reading. ADD
   it as the very first line. Do not delete anything.

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

The topic ‘Remove Information From Under Comments’ is closed to new replies.

 * ![](https://i0.wp.com/themes.svn.wordpress.org/raindrops/1.700/screenshot.png)
 * raindrops
 * [Support Threads](https://wordpress.org/support/theme/raindrops/)
 * [Active Topics](https://wordpress.org/support/theme/raindrops/active/)
 * [Unresolved Topics](https://wordpress.org/support/theme/raindrops/unresolved/)
 * [Reviews](https://wordpress.org/support/theme/raindrops/reviews/)

 * 3 replies
 * 3 participants
 * Last reply from: [kashmier](https://wordpress.org/support/users/kashmier/)
 * Last activity: [12 years, 9 months ago](https://wordpress.org/support/topic/remove-information-from-under-comments/#post-3584779)
 * Status: resolved