How to get rid of "you can use HTML tags ..." below comment field:

I search in the comment.php and loop-comment.php but I have found nothing like that ...
Thanks.
How to get rid of "you can use HTML tags ..." below comment field:

I search in the comment.php and loop-comment.php but I have found nothing like that ...
Thanks.
Hi colorit2,
Try to add this code in your custom.css:
.form-allowed-tags {
display: none;
}
or
.form-allowed-tags {
display: none !important;
}
Hope this helps. :)
Regards,
Ismael
Thanks, but in which file is this located, to delete it there, because setting just the CSS to display:none gets a big white space. I would like to delete it "clean" in the file itself, but what file?
Thanks.
Hi colorit2,
As far as I knowt hat is actually added by Wordpress core. Adding the display: none shouldn't leave any whitespace as that css property actually removes the css from being rendered (ie it doesn't leave a blank space like hidden would).
Regards,
Devin
You must log in to post.