مرحبًا، أنا جديد في استخدام Discourse ولدي سؤال. هل من الممكن أن تظهر التصنيفات الفرعية داخل فئة معينة، مثل “الإعلانات”، مباشرة عند دخولها؟
مرحباً @szogun
يمكنك تحقيق ذلك في إعدادات الفئة. تأكد من تحديد المربع الموجود في الصورة أدناه. ثم اختر “نمط قائمة الفئة الفرعية” الذي تفضله.
وسؤال آخر، هل هناك طريقة لتجاوز هذه المشكلة خطأ حدث: لا يمكنك تداخل فئة فرعية مع أخرى
أي، لديك فئة - فئة فرعية - مرة أخرى فئة فرعية
هناك طريقة لتجاوز ذلك - إنها إعداد موقع مخفي يمكنك تمكينه إذا كنت تستضيف بنفسك. إذا كنت عميلاً لـ Discourse، فيرجى الاتصال بـ team@discourse.org . لاحظ أن القيمة القصوى هي 3.
max_category_nesting
This is a how-to guide about Hidden Site Settings, how to enable them, and why you might want to adjust them.
Required user level: Administrator
Important: Console access is required for some steps.
In Discourse, hidden site settings refer to configuration options that are not readily visible or accessible through the standard admin dashboard interface. These settings are part of the backend configuration that can control various advanced or potent…
Quick guide to set it from 2 (default) to 3 via the console:
cd /var/discourse/
./launcher enter app
rails c
read current value:
[1] pry(main)> SiteSetting.max_category_nesting
=> 2
write new value:
[2] pry(main)> SiteSetting.max_category_nesting = 3
=> 3