# Topic timer notification icon

**URL:** https://meta.discourse.org/t/topic-timer-notification-icon/107304
**Category:** Support
**Tags:** topic-timers
**Created:** [January 23, 2019, 3:26pm UTC](https://meta.discourse.org/t/topic-timer-notification-icon/107304 "2019-01-23T15:26:10Z")
**Posts on this page:** 13
**Page:** 1

<div class="post-metadata">

### Author: ![Loki](https://avatars.discourse-cdn.com/v4/letter/l/3be4f8/32.png) [@Loki](https://meta.discourse.org/u/Loki)
#### Post date: [January 23, 2019, 3:26pm UTC](https://meta.discourse.org/t/topic-timer-notification-icon/107304/1 "2019-01-23T15:26:10Z")

</div>

On our site, the notification icon for a user topic timer (“remind me”) is ![image](https://global.discourse-cdn.com/meta/original/3X/5/c/5c89aef1069ffc94277fb7d06f61af04fb988d0b.png) . A better icon, I think, would be a clock symbol. Is there a way to change that in admin?

---

<div class="post-metadata">

### Author: ![pmusaraj](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/pmusaraj/32/119489_2.png) [@pmusaraj](https://meta.discourse.org/u/pmusaraj)
#### Post date: [January 23, 2019, 4:58pm UTC](https://meta.discourse.org/t/topic-timer-notification-icon/107304/2 "2019-01-23T16:58:59Z")

</div>

Hmm, I see a different icon for the “remind me” option:

![image](https://global.discourse-cdn.com/meta/original/3X/4/5/452b945a6601efe52613adc40bc604dde2231038.png)

Can you post a screenshot of your scenario?

Also, see [Change icons globally](https://meta.discourse.org/t/change-icons-globally-using-the-apis/87751) for more details on how to replace icons.

---

<div class="post-metadata">

### Author: ![supermathie](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/supermathie/32/507518_2.png) [@supermathie](https://meta.discourse.org/u/supermathie)
#### Post date: [January 23, 2019, 5:01pm UTC](https://meta.discourse.org/t/topic-timer-notification-icon/107304/4 "2019-01-23T17:01:45Z")

</div>

I believe @Loki is talking about the icon that shows up in Notifications.

My first instinct about the change is that the hand is very distinct from the other icons (we already have a few that are similar in shape) so that’s a benefit.

BUT I am generally nowhere near UX design (rather, I just have lots of opinions), so YMMV 🙂

---

<div class="post-metadata">

### Author: ![Loki](https://avatars.discourse-cdn.com/v4/letter/l/3be4f8/32.png) [@Loki](https://meta.discourse.org/u/Loki)
#### Post date: [January 23, 2019, 5:21pm UTC](https://meta.discourse.org/t/topic-timer-notification-icon/107304/5 "2019-01-23T17:21:00Z")

</div>

Correct. I’m referring to the icon that shows up in the actual notification, like this:

 ![image](https://global.discourse-cdn.com/meta/original/3X/f/f/ff3342ec95e9024612efede15f21fd3d1f693ccf.png)

The hand icon makes me think, referral or pointer rather than time based reminder. I’d much rather see the click icon that shows up when you create the reminder as in @pmusaraj’s screenshot. I think that would also be more consistent.

I’ll take a look at the API link.

---

<div class="post-metadata">

### Author: ![pmusaraj](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/pmusaraj/32/119489_2.png) [@pmusaraj](https://meta.discourse.org/u/pmusaraj)
#### Post date: [January 23, 2019, 5:41pm UTC](https://meta.discourse.org/t/topic-timer-notification-icon/107304/6 "2019-01-23T17:41:18Z")

</div>

Ah, then I think this is doable via a theme customization:

```plaintext
    <script type="text/discourse-plugin" version="0.8">
        api.replaceIcon('notification.topic_reminder', 'far-clock');
    </script>

```

(The API link is still useful, but this is a bit of a special case.)

---

<div class="post-metadata">

### Author: ![Loki](https://avatars.discourse-cdn.com/v4/letter/l/3be4f8/32.png) [@Loki](https://meta.discourse.org/u/Loki)
#### Post date: [January 23, 2019, 5:42pm UTC](https://meta.discourse.org/t/topic-timer-notification-icon/107304/7 "2019-01-23T17:42:23Z")

</div>

@mtan Can we do this?

---

<div class="post-metadata">

### Author: ![mtan](https://avatars.discourse-cdn.com/v4/letter/m/58956e/32.png) [@mtan](https://meta.discourse.org/u/mtan)
#### Post date: [January 23, 2019, 9:25pm UTC](https://meta.discourse.org/t/topic-timer-notification-icon/107304/8 "2019-01-23T21:25:18Z")

</div>

@pmusaraj How long will this work take, if we will just inject this code, should be simple enough?

---

<div class="post-metadata">

### Author: ![pmusaraj](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/pmusaraj/32/119489_2.png) [@pmusaraj](https://meta.discourse.org/u/pmusaraj)
#### Post date: [January 23, 2019, 10:35pm UTC](https://meta.discourse.org/t/topic-timer-notification-icon/107304/9 "2019-01-23T22:35:18Z")

</div>

Yeah, it’s pretty straightforward, I set up a [PR](https://github.com/wyzelabs/discourse-wyze-theme/pull/5) on your repo, just merge that and update.

---

<div class="post-metadata">

### Author: ![Loki](https://avatars.discourse-cdn.com/v4/letter/l/3be4f8/32.png) [@Loki](https://meta.discourse.org/u/Loki)
#### Post date: [January 23, 2019, 11:31pm UTC](https://meta.discourse.org/t/topic-timer-notification-icon/107304/10 "2019-01-23T23:31:44Z")

</div>

I see the icon is now a clock on our site. Very cool @mtan and @pmusaraj. Thanks!

---

<div class="post-metadata">

### Author: ![codinghorror](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/codinghorror/32/110067_2.png) [@codinghorror](https://meta.discourse.org/u/codinghorror)
#### Post date: [January 24, 2019, 8:25am UTC](https://meta.discourse.org/t/topic-timer-notification-icon/107304/11 "2019-01-24T08:25:21Z")

</div>

I actually think this is a great idea for a core feature, so let’s just put it in core. The clock icon _does_ make more sense to show in the notifications when a timer reminds you about a topic. The finger can remain for manual invites to a topic by other users.

---

<div class="post-metadata">

### Author: ![Loki](https://avatars.discourse-cdn.com/v4/letter/l/3be4f8/32.png) [@Loki](https://meta.discourse.org/u/Loki)
#### Post date: [January 24, 2019, 11:49am UTC](https://meta.discourse.org/t/topic-timer-notification-icon/107304/12 "2019-01-24T11:49:08Z")

</div>

Perfect! Makes total sense to me!

---

<div class="post-metadata">

### Author: ![pmusaraj](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/pmusaraj/32/119489_2.png) [@pmusaraj](https://meta.discourse.org/u/pmusaraj)
#### Post date: [January 24, 2019, 3:09pm UTC](https://meta.discourse.org/t/topic-timer-notification-icon/107304/13 "2019-01-24T15:09:37Z")

</div>

Done in [UX: change topic reminder notification icon · discourse/discourse@755b47b · GitHub](https://github.com/discourse/discourse/commit/755b47b4bcf2dff27b25531a259fd5d6a2896ddd)

---

<div class="post-metadata">

### Author: ![pmusaraj](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/pmusaraj/32/119489_2.png) [@pmusaraj](https://meta.discourse.org/u/pmusaraj)
#### Post date: [January 24, 2019, 3:09pm UTC](https://meta.discourse.org/t/topic-timer-notification-icon/107304/14 "2019-01-24T15:09:41Z")

</div>


