# Remove "Trust Level" and "Groups" from Profile

**URL:** https://meta.discourse.org/t/remove-trust-level-and-groups-from-profile/123986
**Category:** UX
**Created:** [July 25, 2019, 7:52pm UTC](https://meta.discourse.org/t/remove-trust-level-and-groups-from-profile/123986 "2019-07-25T19:52:32Z")
**Posts on this page:** 7
**Page:** 1

<div class="post-metadata">

### Author: ![justin.noom](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/justin.noom/32/147907_2.png) [@justin.noom](https://meta.discourse.org/u/justin.noom)
#### Post date: [July 25, 2019, 7:52pm UTC](https://meta.discourse.org/t/remove-trust-level-and-groups-from-profile/123986/1 "2019-07-25T19:52:32Z")

</div>

I was looking to remove the following from all user profiles in order to disable the viewing of groups and trust levels by users. Is this something that would be plausible to do with a theme component?

```plaintext
dt.groups
dd.groups
dd.trust-level
dt.trust-level

```

---

<div class="post-metadata">

### Author: ![eviltrout](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/eviltrout/32/5275_2.png) [@eviltrout](https://meta.discourse.org/u/eviltrout)
#### Post date: [July 25, 2019, 8:30pm UTC](https://meta.discourse.org/t/remove-trust-level-and-groups-from-profile/123986/2 "2019-07-25T20:30:29Z")

</div>

Yes but I should advise that those fields will still be available in the API.

---

<div class="post-metadata">

### Author: ![justin.noom](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/justin.noom/32/147907_2.png) [@justin.noom](https://meta.discourse.org/u/justin.noom)
#### Post date: [July 25, 2019, 8:45pm UTC](https://meta.discourse.org/t/remove-trust-level-and-groups-from-profile/123986/3 "2019-07-25T20:45:09Z")

</div>

Thank you! That’s good to know - shouldn’t be an issue though. Do you think that inserting this into `Common` would do the trick?

```plaintext
    #dt.groups {
    display:none;
    }

```

(altering for each, etc)

---

<div class="post-metadata">

### Author: ![eviltrout](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/eviltrout/32/5275_2.png) [@eviltrout](https://meta.discourse.org/u/eviltrout)
#### Post date: [July 26, 2019, 1:18pm UTC](https://meta.discourse.org/t/remove-trust-level-and-groups-from-profile/123986/4 "2019-07-26T13:18:23Z")

</div>

`<dt>` is not an id so you’d want to do `dt.groups` but yes that is the right approach.

---

<div class="post-metadata">

### Author: ![SidV](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/sidv/32/119460_2.png) [@SidV](https://meta.discourse.org/u/SidV)
#### Post date: [July 26, 2019, 1:34pm UTC](https://meta.discourse.org/t/remove-trust-level-and-groups-from-profile/123986/5 "2019-07-26T13:34:11Z")

</div>

If you add this on your CSS will work, I tested on my site:

`.details .secondary .trust-level {display:none!important;}`

When you mean “the groups”, what info do you need to hide?  
Can you please put a screenshot ?

---

<div class="post-metadata">

### Author: ![justin.noom](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/justin.noom/32/147907_2.png) [@justin.noom](https://meta.discourse.org/u/justin.noom)
#### Post date: [July 26, 2019, 7:21pm UTC](https://meta.discourse.org/t/remove-trust-level-and-groups-from-profile/123986/6 "2019-07-26T19:21:35Z")

</div>

Thank you @SidV! I will try that now. 🙂 I was referring to the groups/trust levels here on the user profile:

---

<div class="post-metadata">

### Author: ![justin.noom](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/justin.noom/32/147907_2.png) [@justin.noom](https://meta.discourse.org/u/justin.noom)
#### Post date: [July 26, 2019, 7:27pm UTC](https://meta.discourse.org/t/remove-trust-level-and-groups-from-profile/123986/7 "2019-07-26T19:27:37Z")

</div>

> [@SidV](#):
>
> `.details .secondary .trust-level {display:none!important;}`

This worked with `.groups` as well!
