没有统计数据的用户列表

Hi,

Enable users directory give the option to see a list of all users.
I would like to give this option to our users but I would like it to be only a list, without displaying the interaction count for each user.

Is there a way to do this?

Thanks.

I think the easiest option to do this is to hide using CSS

.directory table th.sortable {
    display: none;
}

.directory table tr.me td .username a, .directory table tr.me td .name, .directory table tr.me td .title, .directory table tr.me td .number, .directory table tr.me td .time-read {
    display: none;
}

.directory table td .number, .directory table td .time-read, .directory table th .number, .directory table th .time-read {
    display: none;
}

You can combine CSS and change it.

thanks for this!

Exactly what I needed.

Where can I find the classes and ids used? A “view page source” shows me a big long script and if I could see the html I could try to work these things out myself.

Thanks again!

按键盘上的 F12 键以打开浏览器控制台。您可以在这里查找 HTML 类和 ID。

如果您点击“选择元素”,然后点击页面上您想要修改的元素,它将显示所使用的确切 HTML(和 CSS)。

Thanks for that! forgot about the developers tools! :frowning:

A.