We’re finding that having Suggested Topics below every conversation is confusing and distracting. Is there an easy way to hide that? Or, if not, is there a hard way? Thanks!
That’s an odd reaction, as they are a central design point of Discourse, for a variety of reasons:
-
The “pot of gold” at the end of reading a topic is… more interesting things to read
-
Suggested prioritizes topics you’ve participated in/created/watched, so it’s a fast way to clear your read queue without pogo-sticking back and forth to the topic lists.
-
Suggested gives you a related walk in non-closed topics in the same category you’re currently in. I frequently find things in suggested that I wanted to follow up on eventually anyway.
So I’d suggest you might want to try absorbing the Discourse style a bit longer before jumping to extremes. Losing #2 in particular would be really painful for me as a user on your Discourse, if I’m actually reading stuff at all.
That said, if you want to remove, CSS is probably the way:
<div id="suggested-topics">
Just set that element to hidden in CSS, and you can probably set the # of suggested topics returned from the default of 5 to 1 in the site settings to reduce server load a tad.
Ah, thank you Jeff, that does sound like that may be the way to go once our discourse is more populated.
And thanks for the tip about the # in the settings – setting it to 0 hid Suggested Topics completely. For now.
即使这个话题已经过时了,我也遇到了同样的需求。
关于 Jeff Atwood 的回答,我认为这个功能可能很有用,但默认的显示方式确实令人困惑。
我通过调整 CSS 样式解决了这种困惑。
如果其他人也有同样的反应,下面的代码能帮助你更清晰地了解页面上发生了什么:
suggested-topics {
border-top: solid;
border-color: #86a7db;
background-color: #dae3e8;
}
.topic-post {
border: solid;
border-color: #c8d5db;
background-color: #e6f0f5;
}
要移除主题底部的“建议主题”,您可以将 suggested topics 管理员设置设置为 0。 ![]()