2
07/11/2024 2:47 pm
Topic starter
Hi. I think I have a problem with my WordPress theme! Under the comments' section I see this:
"You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>"
I also see that Google is indexing these lines and shows them in the search results 🙁 - It is a mess! Can somebody tell me how to remove these lines... Thanks!
1 Answer
1
07/11/2024 2:49 pm
It is easy mate! Go to your WP theme's files (php ones) and find a file called "comments.php" - scroll down and find there this line:
<?php comment_form(); ?>
replace it with:
<?php comment_form(array('comment_notes_after' => '')); ?>
This must solve your problem! 🙂