> For clean Markdown content of this page, append .md to this URL. For the complete documentation index, see https://buildwithfern.com/learn/llms.txt. # Collecting feedback and suggestions from users > Collect on-page feedback and enable edit suggestions from users in your Fern docs via GitHub or Fern Editor. Fern offers a variety of ways to track feedback and suggested improvements from users. ## On-page feedback By default, every Markdown page of your docs contains a feedback component at the bottom of the page: #### Self-hosted user feedback In [self-hosted](/learn/docs/self-hosted/overview) deployments, feedback events are logged as structured JSON to the container's stdout. See [On-page feedback](/learn/docs/self-hosted/set-up#on-page-feedback) for details. ### Disable on-page feedback Set [`hide-feedback`](/learn/docs/configuration/site-level-settings#layouthide-feedback) to `true` under `layout` in `docs.yml` to remove the feedback component from every page: **`docs.yml`** ```yaml docs.yml layout: hide-feedback: true ``` To remove it from a single page instead, set [`hide-feedback: true`](/learn/docs/configuration/page-level-settings#on-page-feedback) in that page's frontmatter. ### Viewing feedback in the Dashboard You can view all on-page [feedback responses](/learn/dashboard/getting-started/overview) in the **Feedback** tab of the [Fern Dashboard](https://dashboard.buildwithfern.com/). The table shows feedback per page, including whether the page was helpful and the reason (if provided), plus channel, location, and date. You can filter by date range and export results to CSV. ## Edit this page Allow users to suggest changes to the current page directly from your docs. There are two modes for this feature: * **GitHub (default):** Clicking the button links directly to the page's source file in your GitHub repository, where users can suggest changes. This is ideal for public-facing sites with a public repository, allowing external users to submit pull requests. * **Dashboard:** Clicking the button opens a screen where users can choose between starting a Fern Editor session for that page or navigating to the source file on GitHub. This is especially useful for internal sites where many or most viewers also have editor access and can make changes directly via [Fern Editor](/learn/docs/writing-content/fern-editor). You can configure this feature — including whether the button links directly to GitHub or presents editing options — in the [global configuration](/learn/docs/configuration/site-level-settings#edit-this-page-configuration). You can also override the edit URL for an individual page in the [frontmatter](/learn/docs/configuration/page-level-settings#edit-this-page). This feature works in preview links but doesn't work in local development. > Collect on-page feedback and enable edit suggestions from users in your Fern docs via GitHub or Fern Editor.