How to Remove Hyperlink From Blogger Comments
These Two Techniques To Remove Links From You Blog Comments
Technique 1: Usage CSS Remove Hyperlinks From Comments
These days online search engine are clever and even they recognize exactly what you are referring works and also what they need to neglect. By getting rid of spam web links from remarks with the help of CSS could not only hide those web links yet would certainly stop search engines from indexing them too.
Step 1: Go to blogger.com and log in your account
Step 2: Click on Template Menu then Click on Edit HTML button Search for ]]</b:skin> tag by press Ctrl + F or Command + F for Mac. Copy ]]</b:skin> tag paste it in search form and press Enter Key. Then just above it paste below CSS Code then press Save Template Button.
.comment-content a { display: none; }
Technique 2: Use jQuery To Remove Hyperlinks Blogger Comments
Some individuals may not suggest the above procedure they may argue that the spam web link is still there since we have merely concealed it with the help of a straightforward display: none; CSS.
Step 1: Go to blogger.com and log in your account
Step 2: Click on Template Menu then click on Edit HTML button. Now search for </body> tag by press Ctrl + F or Command + F for Mac. Copy </body> tag paste it in search form and press enter. Then just above it paste below Script then press Save Template Button
<!--Start Script -->From now you will never worry about remark spam or any hyperlink that left from the comment box. Whenever someone will certainly leave a link right into his comment.
<script>$('.comment-content a[rel$=nofollow]').replaceWith(function(){return ($(this).text());});</script>
<!--End Script -->
We wish this brief tutorial may aid you in taking on comment spam from your blog to a particular extent. We would certainly advise you to additionally utilize comment moderation feature that would also be a useful point to be done to make sure spam.