How to add thumbs up & thumbs down feedback actions on response template?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-03-2024 05:35 AM
"How do I add thumbs up and thumbs down feedback actions to response templates in Agent Workspace? Please refer to the screenshot below. I need help with this, as I’m new to this kind of requirement."
@Ankur Bawiskar
@Harsh Vardhan
@asifnoor
@Jaspal Singh
@Community Alums
@Edward Rosario
@Alisa Tipisova

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-03-2024 12:30 PM
try adding this code to the template body. in the html
<span class="thumbs-up" onclick="updateFeedback('positive')"> 👍 </span>
<span class="thumbs-down" onclick="updateFeedback('negative')"> 👎 </span>
Please mark helpful if it helps
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-03-2024 09:57 PM
Hi @Edward Rosario Thank you for your response, but the solution above is not working. I want to dynamically populate thumbs up and thumbs down for all the response templates."
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-03-2024 10:15 PM
Hi @Edward Rosario ,
Once you add the code you gave will not update the feedback.
Because as soon as you save the code , the HTML automatically updates the HTML and removes ""updateFeedback('negative')", will only show below:
<p><span class="thumbs-up"> 👍 </span> <span class="thumbs-down"> 👎 </span></p>
which makes the thumbs up/down displayed but not clickable:
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-03-2024 10:23 PM
Hi @Community Alums
Thumbs up & down action buttons should be clickable to send feedback and the button should be on the top not in the HTML Body. I have attached screenshot for better understanding. Thank you