看起来“阅读时间”对管理员用户可见,但对普通用户不可见,并且在设置中也无法取消勾选。是这样吗?
1 个赞
“阅读时间”仅在“所有时间”视图中显示,但应向所有人可见。您说得对,目前无法将其移除。
2 个赞
谢谢。在我的论坛上,考虑到要显示的许多其他列,我能够通过一些 CSS 来摆脱“阅读时间”,我认为这是以前论坛上的某个人建议的。
桌面:
div.users-directory table th:nth-child(5), /* 阅读时间 */
div.users-directory table td:nth-child(5)
{
display: none;
}
移动端:
div.user-stat:nth-child(5) /* 阅读时间 */
{
display: none;
}
1 个赞
This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.