惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

The GitHub Blog
The GitHub Blog
I
InfoQ
U
Unit 42
WordPress大学
WordPress大学
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Apple Machine Learning Research
Apple Machine Learning Research
J
Java Code Geeks
月光博客
月光博客
D
Docker
Stack Overflow Blog
Stack Overflow Blog
D
DataBreaches.Net
阮一峰的网络日志
阮一峰的网络日志
Blog — PlanetScale
Blog — PlanetScale
V
Visual Studio Blog
博客园 - 聂微东
A
About on SuperTechFans
腾讯CDC
Jina AI
Jina AI
Microsoft Azure Blog
Microsoft Azure Blog
GbyAI
GbyAI
博客园 - 【当耐特】
罗磊的独立博客
博客园 - 三生石上(FineUI控件)
M
MIT News - Artificial intelligence

Discourse Meta - Latest posts

Horizon: High Context Topic Cards I'd like to ask what this file /var/www/discourse/vendor/data/RT_sRGB.icm is used for? Discourse to Markdown Plugin How to verify a subdomain (mysite.discourse.group) in Google Search Console? Reader Mode Publishing WordPress gallery posts on Discourse Discourse User Feedback New user filter by custom field and contact Interact with discourse from Python? Why we can't type the assignee in the search of a post to assign - home screen app Redis Flushall Category-toggled one-touch move post Some sort of variable to eliminate duplicate text? Why did this plugin replacement fail? Add user to list modal often appears above the mobile viewport sceen Creating/Editing a post on mobile: let's discuss the 2026 Discourse experience Wp-discourse feature request - do not show comments with specific tag? Are there any good Chinese plugins? Discourse ID and 2FA Discourse MCP is here! Sample Forum to See Admin Features? I am unable to register for a free Discourse site Wikipedia Lookup Add text for /login (like js.create_account.disclaimer for /signup) How can i set disable Markdown & Default to Rich Text What's the background image size for the Welcome Banner? How do I enable Associated Accounts with 2FA? Hamburger toggle Support <span data-attribute> in the rich editor Cannot disable read-only mode on Free Plan
Discourse as an LMS / Discourse integration with an LMS
@zsviczian Z · 2026-04-29 · via Discourse Meta - Latest posts
Like many of you in this thread, I’ve been looking for a lightweight way to use Discourse natively as an LMS. I find dedicated LMS platforms too bloated, but Discourse’s default “notification decay” (where older topics stop showing as “unread” for new users) makes tracking course progress difficult. To scratch my own itch, I built a simple solution using a combination of category settings, a tiny backend plugin, and a theme component. Here is how I set it up, and the open-source code you can use to replicate it! The Basic Concept: Discourse as an LMS To make this work, I use standard Discourse features combined with the official Discourse Doc Categories plugin : Course = Category: Each course gets its own category. Lesson = Topic: Each lesson is a topic within that category. Permissions: Members can reply to lessons (to ask questions), but only staff can create new topics. Ordering: Lesson order is fixed by creation date. (Tip: This requires a bit of forward-thinking when posting lessons, or you can use the Rails console to quickly backdate topic creation times to force the correct sorting). Syllabus: I use the Discourse Doc Categories plugin to designate an “Index Topic.” This index topic acts as the course syllabus/tracker and renders a beautiful outline on the sidebar when users enter the course. The Missing Piece: True Progress Tracking The problem with the setup above is that when a new student joins, the older lesson topics don’t show up as “unread,” so they have no way to visually track their progress. To solve this, I built a backend plugin that directly queries the TopicUser database table for true historical read status, and a frontend Theme Component that transforms the standard Discourse sidebar into a real-time LMS progress tracker. 1. Main Sidebar Progress Badges The theme component replaces standard blue notification dots with [ read / total ] progress indicators for your course categories. 2. Lesson Completion Checkmarks When a user clicks into a course, the Docs plugin renders the syllabus. My theme component injects success checkmarks ( fa-check ) next to the specific lessons the user has finished reading. 3. Course Completion Once a user reads every topic in the category, the sidebar progress badge automatically transforms into a satisfying completion tick! How to Install it Because this requires bypassing the standard Discourse notification cache, you must install both the backend plugin and the frontend theme component. Step 1: Install the Prerequisite Ensure you have the official Discourse Doc Categories plugin installed and active. My plugin specifically only targets categories that have an Index Topic configured. Step 2: Install the Backend API Plugin Add this to your app.yml below docker_manager and rebuild your container. This provides the lightning-fast API endpoint for read statuses. Repository Link: https://github.com/zsviczian/discourse-course-progress ** hooks: after_code: - exec: cd: $home/plugins cmd: - git clone https://github.com/discourse/docker_manager.git - git clone https://github.com/zsviczian/discourse-course-progress.git Step 3: Install the UI Theme Component Install this directly via your web browser in Admin > Customize > Themes > Install > From a Git Repository . Repository Link: https://github.com/zsviczian/discourse-course-progress-theme I hope this helps others who are trying to build community-driven courses without the bloat of a separate LMS platform! Let me know if you end up using it.