用户目录中的“阅读时间”是否仅对管理员可见?

It looks like “Time Read” appears for admin users but not normal users, and also that it doesn’t appear as something that can be unticked in the settings. Is that right?

1 个赞

‘Time Read’ only appears on the All Time view, but should be visible to everyone. You’re right that it’s not currently selectable to remove though.

2 个赞

Thanks. On my forum, given the number of other columns selected to be displayed, I am able to get rid of “Time read” using some CSS that I think someone on this forum suggested some time ago.

Desktop:

div.users-directory table th:nth-child(5), /* Time read */
div.users-directory table td:nth-child(5)
{
    display: none;
}

Mobile:

div.user-stat:nth-child(5) /* Time read */
{
    display: none;
}
1 个赞

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.