Quantcast
Channel: Crunchify
Viewing all articles
Browse latest Browse all 1037

WordPress: How to Remove Comment Notes Below the Comment Box

$
0
0

WordPress is a very powerful blogging platform. Now world’s ~18% sites are powered by WordPress. This post shows tricks on how to remove comment notes below the comment box?

WordPress Remove Comment Notes after Comment Box WordPress: How to Remove Comment Notes Below the Comment Box

In order to remove above text field, go to your WordPress theme’s functions.php file and add below code.

function crunchify_init() {
	add_filter('comment_form_defaults','crunchify_comments_form_defaults');
}
add_action('after_setup_theme','crunchify_init');

function crunchify_comments_form_defaults($default) {
	unset($default['comment_notes_after']);
	return $default;
}

We have posted number of WordPress tutorial on Crunchify which you may want to take a look.

The post WordPress: How to Remove Comment Notes Below the Comment Box appeared first on Crunchify.


Viewing all articles
Browse latest Browse all 1037

Trending Articles