# Completely disable mailing list mode?

**URL:** https://meta.discourse.org/t/completely-disable-mailing-list-mode/37334
**Category:** Feature
**Created:** [December 31, 2015, 7:13pm UTC](https://meta.discourse.org/t/completely-disable-mailing-list-mode/37334 "2015-12-31T19:13:53Z")
**Posts on this page:** 1
**Showing post:** 10

<div class="post-metadata">

### Author: ![techAPJ](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/techapj/32/342990_2.png) [@techAPJ](https://meta.discourse.org/u/techAPJ)
#### Post date: [January 5, 2016, 8:03am UTC](https://meta.discourse.org/t/completely-disable-mailing-list-mode/37334/10 "2016-01-05T08:03:32Z")

</div>

Sure, I just added the CSS class `pref-mailing-list-mode`.

@jesselperry adding this custom CSS will do the trick:

```
.user-preferences .pref-mailing-list-mode {
    display: none;
}

```

* * *

To turn off mailing list mode for all the existing users, run this command in console:

```plaintext
./launcher enter app
rails c
UserOption.update_all(mailing_list_mode: false)

```

---

_[View the full topic](https://meta.discourse.org/t/completely-disable-mailing-list-mode/37334)._
