User list without statistics

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.