# Like button, unique like, no sign-in, display count

**URL:** https://community.glideapps.com/t/like-button-unique-like-no-sign-in-display-count/74327
**Category:** Ask for Help
**Created:** [June 23, 2024, 2:37am UTC](https://community.glideapps.com/t/like-button-unique-like-no-sign-in-display-count/74327 "2024-06-23T02:37:38Z")
**Posts on this page:** 2
**Page:** 1

<div class="post-metadata">

### Author: ![Antoine\_B](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/antoine_b/32/76890_2.png) [@Antoine\_B](https://community.glideapps.com/u/Antoine_B)
#### Post date: [June 23, 2024, 2:37am UTC](https://community.glideapps.com/t/like-button-unique-like-no-sign-in-display-count/74327/1 "2024-06-23T02:37:38Z")

</div>

Hello,

how could it be possible to have a button to like an item (with only the possibility to like an item one time), without having to sign users in ?

Then I would also display the number of likes given to the item.

Thanks  
Antoine

---

<div class="post-metadata">

### Author: ![Darren\_Murphy](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/darren_murphy/32/47326_2.png) [@Darren\_Murphy](https://community.glideapps.com/u/Darren_Murphy)
#### Post date: [June 23, 2024, 10:35am UTC](https://community.glideapps.com/t/like-button-unique-like-no-sign-in-display-count/74327/2 "2024-06-23T10:35:31Z")

</div>

> [@Antoine\_B](#):
>
> how could it be possible to have a button to like an item (with only the possibility to like an item one time), without having to sign users in ?

Not really.  
You could record the likes in a User Specific boolean column, and then use the state of that to prevent further likes, but it would not persist across sessions. So the next time a user came back (or even if they just refresh the page) the state of the boolean would be reset and they’d be able to add a second like.

> [@Antoine\_B](#):
>
> Then I would also display the number of likes given to the item.

Assuming that you are recording likes in a User Specific column, you would also need an action to increment a (non-user specific) global counter. This is because you cannot rollup the values in user specific columns across all users.
