# Suppressing the word "likes" on posts

**URL:** https://meta.discourse.org/t/suppressing-the-word-likes-on-posts/84178
**Category:** UX
**Created:** [3월 29, 2018, 9:39오후 UTC](https://meta.discourse.org/t/suppressing-the-word-likes-on-posts/84178 "2018-03-29T21:39:16Z")
**Posts on this page:** 1
**Showing post:** 108

<div class="post-metadata">

### Author: ![vinothkannans](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/vinothkannans/32/86465_2.png) [@vinothkannans](https://meta.discourse.org/u/vinothkannans)
#### Post date: [4월 24, 2018, 9:07오전 UTC](https://meta.discourse.org/t/suppressing-the-word-likes-on-posts/84178/108 "2018-04-24T09:07:38Z")

</div>

> [@tophee](#):
>
> On the Asana Forum , for example, there is now the empty heart and when you press it, it becomes a 👍…

If they/anyone used CSS hack to change ❤ icon to 👍 then they have to change the CSS like below

```css
// 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;
}

```

---

_[View the full topic](https://meta.discourse.org/t/suppressing-the-word-likes-on-posts/84178)._
