> 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: onCommentDownvoted(event: DownvotedComment) # Method package: wixForumBackend # Method menu location: wixForumBackend --> Events --> onCommentDownvoted # Method Link: https://dev.wix.com/docs/velo/apis/wix-forum-backend/events/on-comment-downvoted.md # Method Description: A backend event that fires when a forum comment is downvoted. The `onCommentDownvoted()` event handler runs when an existing forum comment in your site is downvoted. The received `DownvotedComment` object contains information about the comment that was downvoted. > **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 downvoted ```javascript // Place this code in a file named events.js // in the Backend section of your code files. export function wixForum_onCommentDownvoted(event) { const downvotedCommentId = event.commentId; console.log("Comment downvoted"); } ``` ---