# How to unhide a blocked user's posts?

**URL:** https://meta.discourse.org/t/how-to-unhide-a-blocked-users-posts/46926
**Category:** Support
**Created:** [2016年七月7日 02:43 UTC](https://meta.discourse.org/t/how-to-unhide-a-blocked-users-posts/46926 "2016-07-07T02:43:26Z")
**Posts on this page:** 5
**Page:** 1

<div class="post-metadata">

### Author: ![Gilbert\_189](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/gilbert_189/32/59197_2.png) [@Gilbert\_189](https://meta.discourse.org/u/Gilbert_189)
#### Post date: [2016年七月7日 02:43 UTC](https://meta.discourse.org/t/how-to-unhide-a-blocked-users-posts/46926/1 "2016-07-07T02:43:26Z")

</div>

Hey there!

So, one of our moderators had to block one of our leaders temporarily to fix something in her account. When he unblocked her, her posts remained hidden, as expected. Some users have been confused on why all of the posts seem to be flagged, and I’d like to know if there’s a way to unhide all of the user’s posts. Thanks! 🙂

---

<div class="post-metadata">

### Author: ![Gilbert\_189](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/gilbert_189/32/59197_2.png) [@Gilbert\_189](https://meta.discourse.org/u/Gilbert_189)
#### Post date: [2016年七月7日 19:24 UTC](https://meta.discourse.org/t/how-to-unhide-a-blocked-users-posts/46926/2 "2016-07-07T19:24:13Z")

</div>

Just remembered the option to “Unhide Post”, but that’s still pretty tedious.

---

<div class="post-metadata">

### Author: ![zogstrip](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/zogstrip/32/512781_2.png) [@zogstrip](https://meta.discourse.org/u/zogstrip)
#### Post date: [2016年七月7日 19:56 UTC](https://meta.discourse.org/t/how-to-unhide-a-blocked-users-posts/46926/3 "2016-07-07T19:56:09Z")

</div>

The only way I can think of would be to use the rails console. SSH into your server and then

```bash
cd /var/discourse
./launcher enter app
rails c
User.find(<id>).posts.each(&:unhide!)

```

Where “`<id>`” is the id of the moderator.

---

<div class="post-metadata">

### Author: ![system](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/system/32/443519_2.png) [@system](https://meta.discourse.org/u/system)
#### Post date: [2019年二月9日 03:42 UTC](https://meta.discourse.org/t/how-to-unhide-a-blocked-users-posts/46926/4 "2019-02-09T03:42:10Z")

</div>



---

<div class="post-metadata">

### Author: ![sam](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/sam/32/102149_2.png) [@sam](https://meta.discourse.org/u/sam)
#### Post date: [2019年二月10日 23:29 UTC](https://meta.discourse.org/t/how-to-unhide-a-blocked-users-posts/46926/5 "2019-02-10T23:29:04Z")

</div>


