# How to change the user-note icon?

**URL:** https://meta.discourse.org/t/how-to-change-the-user-note-icon/261771
**Category:** Development
**Tags:** user-notes
**Created:** [March 11, 2023, 6:30pm UTC](https://meta.discourse.org/t/how-to-change-the-user-note-icon/261771 "2023-03-11T18:30:13Z")
**Posts on this page:** 3
**Page:** 1

<div class="post-metadata">

### Author: ![danielabc](https://avatars.discourse-cdn.com/v4/letter/d/b9e5f3/32.png) [@danielabc](https://meta.discourse.org/u/danielabc)
#### Post date: [March 11, 2023, 6:30pm UTC](https://meta.discourse.org/t/how-to-change-the-user-note-icon/261771/1 "2023-03-11T18:30:13Z")

</div>

how do i change the note icon?

---

<div class="post-metadata">

### Author: ![SidV](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/sidv/32/119460_2.png) [@SidV](https://meta.discourse.org/u/SidV)
#### Post date: [March 27, 2023, 3:47pm UTC](https://meta.discourse.org/t/how-to-change-the-user-note-icon/261771/2 "2023-03-27T15:47:00Z")

</div>

I think maybe you can fork the plugin and edit the file on line 14: [discourse-user-notes/plugin.rb at main · discourse/discourse-user-notes · GitHub](https://github.com/discourse/discourse-user-notes/blob/main/plugin.rb#L14)

---

<div class="post-metadata">

### Author: ![JammyDodger](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/jammydodger/32/254611_2.png) [@JammyDodger](https://meta.discourse.org/u/JammyDodger)
#### Post date: [April 15, 2023, 8:14am UTC](https://meta.discourse.org/t/how-to-change-the-user-note-icon/261771/3 "2023-04-15T08:14:18Z")

</div>

I think you can use the plugin API to do it:

> [@Changing the user notes icon](https://meta.discourse.org/t/changing-the-user-notes-icon/261774/2):
>
> You can use the plugin api in a theme component or plugin to do something like:
> 
> ```plaintext
> api.replaceIcon('sticky-note', 'heart');
> 
> ```
> 
> Where `heart` is the name of the emoji you want to use instead.

You can find more info here: [Change icons globally](https://meta.discourse.org/t/change-icons-globally-using-the-apis/87751)
