WordPress is a very powerful blogging platform. Now World’s 43.2% of the internet sites are powered by WordPress.
This post shows tricks on how to remove comment notes below the comment box?
By default WordPress comment form add bunch of text guiding users to add code. But if your site is not related to Java or other coding then you could easily remove it using default WordPress hook.
In order to remove above text field, go to your WordPress theme’s functions.php file and add below code.
add_filter( 'comment_form_defaults', 'crunchify_remove_comment_form_notes_after' ); function crunchify_remove_comment_form_notes_after( $defaults ) { $defaults['comment_notes_after'] = ''; return $defaults; }
We have posted number of WordPress tutorial on Crunchify which you may want to take a look.