قائمة المستخدمين بدون إحصائيات

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 ومعرفاتها.

إذا نقرت على “تحديد العنصر” ثم نقرت على عنصر الصفحة الذي تريد تغييره، فسيظهر لك بالضبط كود HTML (و CSS) المستخدم.

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

A.