如何增加分类描述的字符限制,或移除首页上的截断?
分类描述基于该分类“关于”主题中的第一段。因此,如果您希望延长描述,请将相关信息添加到第一段中。
描述摘要的截断是在服务器端发生的。
它限制为 300 个字符,且没有相关设置。不过,您可以使用主题组件来绕过此限制,覆盖该属性,使其使用完整描述(即整个第一段)。
尝试在主题组件的头部区域添加类似以下内容:
<script type="text/discourse-plugin" version="0.8">
const { on } = require("ember-addons/ember-computed-decorators");
api.modifyClass("component:parent-category-row", {
@on("init")
updateDescription() {
this.set(
"attrs.category.description_excerpt",
this.attrs.category.description
);
}
});
</script>
谢谢,这完全符合我的需求!
