badget

Biggest Sale! Special Offer!

Get 30% discount on all of our single themes with this coupon code: #30%SALE

Hurry up! *Limited time offer*

Reply To: Code under "Leave a Reply"?

#11530

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!