How To Hide Links From Blogger Comment

Hide Link

It always advisable to Change blogger comment attribute nofollow or remove comments link completely  You can hide all you comment box link using the jQurey or CSS
I’m posting there tow way to hide comment links to hide
your comment box link follow these step

First 
  • Log in you account-Tepmlate-Edit html
  • Find the  ]]></b:skin> and copy the below code
  •  Past the below code jut above  ]]></b:skin>

.comment-content a {
display: none;
}

Second Way

  • Log in you account-Tepmlate-Edit html
  • Find </body>
  • Copy the below code and past above this code </body>

<script src=’https://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js’/&gt

;

  • If you have already using jQurey  then skip this step  
  • Copy the following code and past above </body> tag

<script>
$(‘.comment-content a[rel$=nofollow]’).replaceWith(function(){return ($(this).text());});
</script>

0
0

Leave a Reply