Elenco utenti senza statistiche

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!

Premi F12 sulla tastiera per aprire la console del browser. Qui puoi trovare le classi e gli ID HTML.

Se fai clic su “seleziona elemento” e poi fai clic sull’elemento della pagina che vuoi modificare, ti mostrerà esattamente l’HTML (e il CSS) utilizzato.

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

A.