# Why have I not yet received the EMPATHETIC badge on my site?

**URL:** <https://meta.discourse.org/t/why-have-i-not-yet-received-the-empathetic-badge-on-my-site/49425>\
**Category:** Support\
**Created:** [2016年八月30日 03:43 UTC](https://meta.discourse.org/t/why-have-i-not-yet-received-the-empathetic-badge-on-my-site/49425 "2016-08-30T03:43:54Z")\
**Posts on this page:** 11\
**Page:** 1

<div class="post-metadata">

**Author:** ![tobiaseigen](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/tobiaseigen/32/539204_2.png) [@tobiaseigen](https://meta.discourse.org/u/tobiaseigen)\
**Post date:** [2016年八月30日 03:43 UTC](https://meta.discourse.org/t/why-have-i-not-yet-received-the-empathetic-badge-on-my-site/49425/1 "2016-08-30T03:43:54Z")

</div>

Hi all - my 11 year old son and I were looking over the badges on my site and he pointed out that I should have received the EMPATHETIC badge for receiving 500 likes and giving 1000 likes. It appears I have not.

Has anyone else had this issue, or have a suggestion? Is the query working?

My profile: [https://community.namati.org/user/tobiaseigen](https://community.namati.org/user/tobiaseigen)

 ![](https://global.discourse-cdn.com/meta/original/3X/3/0/306417fd136427ed8bd3a0dce103e4c31b90f870.png)

---

<div class="post-metadata">

**Author:** ![jomaxro](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/jomaxro/32/126216_2.png) [@jomaxro](https://meta.discourse.org/u/jomaxro)\
**Post date:** [2016年八月30日 03:45 UTC](https://meta.discourse.org/t/why-have-i-not-yet-received-the-empathetic-badge-on-my-site/49425/2 "2016-08-30T03:45:48Z")

</div>

You need to have 500 liked _posts_, not just 500 likes. Can you confirm that 500 different posts have been liked?

---

<div class="post-metadata">

**Author:** ![tobiaseigen](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/tobiaseigen/32/539204_2.png) [@tobiaseigen](https://meta.discourse.org/u/tobiaseigen)\
**Post date:** [2016年八月30日 04:27 UTC](https://meta.discourse.org/t/why-have-i-not-yet-received-the-empathetic-badge-on-my-site/49425/3 "2016-08-30T04:27:29Z")

</div>

ah - that makes sense. is there an easy way to determine the number of different posts that have been liked?

---

<div class="post-metadata">

**Author:** ![jomaxro](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/jomaxro/32/126216_2.png) [@jomaxro](https://meta.discourse.org/u/jomaxro)\
**Post date:** [2016年八月30日 04:28 UTC](https://meta.discourse.org/t/why-have-i-not-yet-received-the-empathetic-badge-on-my-site/49425/4 "2016-08-30T04:28:14Z")

</div>

[Data explorer](https://meta.discourse.org/t/32566?silent=true)? Would need to write up some SQL…

---

<div class="post-metadata">

**Author:** ![Mittineague](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/mittineague/32/114259_2.png) [@Mittineague](https://meta.discourse.org/u/Mittineague)\
**Post date:** [2016年八月30日 04:46 UTC](https://meta.discourse.org/t/why-have-i-not-yet-received-the-empathetic-badge-on-my-site/49425/5 "2016-08-30T04:46:12Z")

</div>

> [@tobiaseigen](#):
>
> easy way to determine the number of different posts that have been liked?

> [@jomaxro](#):
>
> [Data explorer](https://meta.discourse.org/t/32566?silent=true)? Would need to write up some SQL…

lol I just did out of curiosity.

I was a bit surprised the badge query uses the posts table instead of the badge\_posts view.

Anyway, try this  
(you’ll need to know your id number)

```plaintext
-- [params] 
-- int :the_user_id = 2

SELECT COUNT(posts.like_count) AS liked_posts 
FROM posts 
WHERE posts.user_id = :the_user_id 
AND posts.like_count > 0

```

---

<div class="post-metadata">

**Author:** ![tobiaseigen](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/tobiaseigen/32/539204_2.png) [@tobiaseigen](https://meta.discourse.org/u/tobiaseigen)\
**Post date:** [2016年八月30日 14:56 UTC](https://meta.discourse.org/t/why-have-i-not-yet-received-the-empathetic-badge-on-my-site/49425/6 "2016-08-30T14:56:41Z")

</div>

Nice! ☀

I guess I am not as empathetic as my son would like to believe. Only about 250 posts liked.

---

<div class="post-metadata">

**Author:** ![sam](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/sam/32/102149_2.png) [@sam](https://meta.discourse.org/u/sam)\
**Post date:** [2016年八月31日 04:17 UTC](https://meta.discourse.org/t/why-have-i-not-yet-received-the-empathetic-badge-on-my-site/49425/7 "2016-08-31T04:17:29Z")

</div>

What we should do long term is display the count when you look at the badge.

 ![](https://global.discourse-cdn.com/meta/original/3X/b/2/b2d1a4e5438c8c5677ac2e9d470abf7e49443d38.png)

---

<div class="post-metadata">

**Author:** ![Mittineague](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/mittineague/32/114259_2.png) [@Mittineague](https://meta.discourse.org/u/Mittineague)\
**Post date:** [2016年八月31日 04:24 UTC](https://meta.discourse.org/t/why-have-i-not-yet-received-the-empathetic-badge-on-my-site/49425/8 "2016-08-31T04:24:43Z")

</div>

Yes, it might not be such a good idea to show the progress towards achieving a Trust Level, but I think revealing the criteria for most of the Badges would be harmless enough.

---

<div class="post-metadata">

**Author:** ![tobiaseigen](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/tobiaseigen/32/539204_2.png) [@tobiaseigen](https://meta.discourse.org/u/tobiaseigen)\
**Post date:** [2016年八月31日 05:05 UTC](https://meta.discourse.org/t/why-have-i-not-yet-received-the-empathetic-badge-on-my-site/49425/9 "2016-08-31T05:05:07Z")

</div>

> [@Mittineague](#):
>
> I think revealing the criteria for most of the Badges would be harmless enough.

Or at least the criteria should be reasonably discoverable. If it’s so important, perhaps the “number of posts liked” should be one of the metrics shown on the user summary page.

---

<div class="post-metadata">

**Author:** ![system](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/system/32/443519_2.png) [@system](https://meta.discourse.org/u/system)\
**Post date:** [2019年三月1日 15:45 UTC](https://meta.discourse.org/t/why-have-i-not-yet-received-the-empathetic-badge-on-my-site/49425/10 "2019-03-01T15:45:10Z")

</div>



---

<div class="post-metadata">

**Author:** ![sam](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/sam/32/102149_2.png) [@sam](https://meta.discourse.org/u/sam)\
**Post date:** [2019年三月3日 22:20 UTC](https://meta.discourse.org/t/why-have-i-not-yet-received-the-empathetic-badge-on-my-site/49425/11 "2019-03-03T22:20:39Z")

</div>


