# Default view only showing 2 poster avatars, unlike Discourse Meta

**URL:** https://meta.discourse.org/t/default-view-only-showing-2-poster-avatars-unlike-discourse-meta/89386
**Category:** Support
**Created:** [7 juni 2018 om 18:39 UTC](https://meta.discourse.org/t/default-view-only-showing-2-poster-avatars-unlike-discourse-meta/89386 "2018-06-07T18:39:43Z")
**Posts on this page:** 1
**Showing post:** 3

<div class="post-metadata">

### Author: ![Bryan\_Underwood\_CA](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/bryan_underwood_ca/32/95427_2.png) [@Bryan\_Underwood\_CA](https://meta.discourse.org/u/Bryan_Underwood_CA)
#### Post date: [8 juni 2018 om 00:45 UTC](https://meta.discourse.org/t/default-view-only-showing-2-poster-avatars-unlike-discourse-meta/89386/3 "2018-06-08T00:45:20Z")

</div>

Hmmm… maybe I’m trying too hard. Yes, lots of import, delete, repeat. Here’s what I’m doing, for the record. Thanks to a modified version of @lead4good [here](https://meta.discourse.org/t/bulk-deleting-mass-modifying-users/64362)

```plaintext
#I am running from /var/discourse/myscripts
require_relative '../discourse/config/environment' 

cnt = 0
Topic.find_each do |t|
# Earlier topics ok to keep like FAQ, Welcome, etc.
# t.user_id -2 is discobot. I don't want to delete all 
# of the "Greetings" topics for my new users
  if t.id > 6 && t.user_id != -2 
    puts "Topic: #{t.id}, #{t.title}, #{t.user_id}"
    t.destroy
	cnt = cnt +1
  end
end
puts "Deleted #{cnt} topics where t.id > 6 && t.user_id != -2"
```

---

_[View the full topic](https://meta.discourse.org/t/default-view-only-showing-2-poster-avatars-unlike-discourse-meta/89386)._
