Is 'Time Read' in user directory only visible to admins?

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 Like

‘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 Likes

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 Like

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