Saturday 12 September 2015

How To Remove/Hide Links From Blogger Blog Comments


Usually the active link in comments left by spammers is the form of promotions, search back links, and so forth. But in essence the way is not the only one to find back links, because backlink itself will come to our blog which is considered beneficial.

To disable the live links in the blog comments, we just need to apply some javascript code, and you can replace a live link in the comments field of your blog with regular letters or in the form of a warning.



First open bloggers> Template> Edit HTML> Copy the code below and apply it before the </body>
<script type='text/javascript'>
//<![CDATA[
$(function(){$('#comments p').find('a').contents().unwrap();});
//]]>
</script>

No comments:

Post a Comment