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?
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.