Suppressing the word "likes" on posts

If they/anyone used CSS hack to change :heart: icon to :+1: then they have to change the CSS like below

// Replace heart with thumbs-up
.fa-heart:before {
  content: "\f164" !important;
}

// Replace heart-o with thumbs-o-up
.fa-heart-o:before {
  content: "\f087" !important;
}
19 Likes