admin管理员组文章数量:1327981
I'm very new to this whole deal with creating websites and wordpress and all, so if there's anything basic knowledge I've missed, then I probably missed it. That saying; I have a weird issue. I want to let visitors have the ability to leave comments on blogposts I do, but the field looks like this; .jpg (I hope an imgur link is ok)
I'd like to have only the "leave a reply", the text about email adress, the comment section itself, name/mail/website fields and the checkbox and the "post comment" button. I dont want that purple box with HTML-codes there - I dont even know where the heck it came from.
Does anyone know what I can do to get rid of it?
I'm very new to this whole deal with creating websites and wordpress and all, so if there's anything basic knowledge I've missed, then I probably missed it. That saying; I have a weird issue. I want to let visitors have the ability to leave comments on blogposts I do, but the field looks like this; https://i.sstatic/hUyqq.jpg (I hope an imgur link is ok)
I'd like to have only the "leave a reply", the text about email adress, the comment section itself, name/mail/website fields and the checkbox and the "post comment" button. I dont want that purple box with HTML-codes there - I dont even know where the heck it came from.
Does anyone know what I can do to get rid of it?
Share Improve this question asked Jul 18, 2020 at 18:32 LunnainnLunnainn 11 Answer
Reset to default 0This page says that feature was removed from Wordpress a long time ago, so you may have a theme or plugin which has put it back.
You can try using the same filter to remove it again. To use the filter you need to add this to your functions.php file:
function remove_comment_prompt( $defaults ) {
return "";
}
add_filter( 'comment_form_defaults', 'remove_comment_prompt', 999, 1);
本文标签:
版权声明:本文标题:I have an odd field with a purple background, mentioning HTML-codes to use while leaving comments 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1742250446a2440656.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论