June 22, 2014 at 6:26 am
#11530
Keymaster
Hi ksuna24,
its the wordpress default so you need code customization for it.
you may add this code inside functions.php This may help you
add_filter('comment_form_defaults', 'remove_comment_styling_prompt');
function remove_comment_styling_prompt($defaults) {
$defaults['comment_notes_after'] = '';
return $defaults;
}
Thank you!