> Portal Navigation: > > - Append `.md` to any URL under `https://dev.wix.com/docs/` to get its markdown version. > - Pages are either content pages (article or reference text) or menu pages (a list of links to child pages). > - To get a menu page, truncate any URL to a parent path and append `.md` (e.g. `https://dev.wix.com/docs/sdk.md`, `https://dev.wix.com/docs/sdk/core-modules.md`). > - Top-level index of all portals: https://dev.wix.com/docs/llms.txt > - Full concatenated docs: https://dev.wix.com/docs/llms-full.txt # Method name: onCommentUnvoted(event: UnvotedComment) # Method package: wixForumBackend # Method menu location: wixForumBackend --> Events --> onCommentUnvoted # Method Link: https://dev.wix.com/docs/velo/apis/wix-forum-backend/events/on-comment-unvoted.md # Method Description: A backend event that fires when a vote is removed from a forum comment. The `onCommentUnvoted()` event handler runs when a vote is removed from a forum comment. The received `UnvotedComment` object contains information about the comment that was unvoted. > **Notes:** > + Only comments on posts with a `postType` of `"QUESTION"` can be voted on. > > > + Backend events are **not** fired when previewing your site. # Method Code Examples: *** Note: do not assume any prop names or enum values other than the ones in the example. ## A backend event that occurs when a forum comment is upvoted ```javascript // Place this code in a file named events.js // in the Backend section of your code files. export function wixForum_onCommentUpvoted(event) { const upvotedCommentId = event.commentId; console.log("Comment upvoted"); } ``` ---