# 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:** [6월 7, 2018, 6: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:** 5
**Page:** 1

<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: [6월 7, 2018, 6:39오후 UTC](https://meta.discourse.org/t/default-view-only-showing-2-poster-avatars-unlike-discourse-meta/89386/1 "2018-06-07T18:39:44Z")

</div>

In my forum, I only see 2 user avatars next to the topic title & category…

 ![image](https://global.discourse-cdn.com/meta/original/3X/3/6/363509771906ad772942ca8938bf1fd07af64c95.jpg)

unlike Discourse Meta which has up to 5.

 ![image](https://global.discourse-cdn.com/meta/original/3X/7/a/7a72cb8c41afd3b04db887e235306ef23fcdf5ab.jpg)

It’s not a CSS or display issue. The rendered code via inspector shows there are actually only 2 avatars rendered on the markup. I can’t seem to find a setting or config to change this. Yesterday as I was playing with import, delete, import, delete, I **_did indeed_** see 5 avatars next to the active posts like this:

 ![image](https://global.discourse-cdn.com/meta/original/3X/9/1/914faff5b2d6eecc2591b7b1ae01ae8b678f2eaf.jpg)

Thoughts?

---

<div class="post-metadata">

### Author: ![codinghorror](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/codinghorror/32/110067_2.png) [@codinghorror](https://meta.discourse.org/u/codinghorror)
#### Post date: [6월 8, 2018, 12:12오전 UTC](https://meta.discourse.org/t/default-view-only-showing-2-poster-avatars-unlike-discourse-meta/89386/2 "2018-06-08T00:12:00Z")

</div>

> [@Bryan\_Underwood\_CA](#):
>
> Yesterday **as I was playing with import, delete, import, delete** , I did indeed see 5 avatars next to the active posts like this:

Sounds like something tweaky is going on? There are daily reconciliation tasks to fix any data oddities and also statistics tasks that run as well.

---

<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: [6월 8, 2018, 12: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"
```

---

<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: [6월 8, 2018, 9:55오전 UTC](https://meta.discourse.org/t/default-view-only-showing-2-poster-avatars-unlike-discourse-meta/89386/4 "2018-06-08T09:55:39Z")

</div>

> [@codinghorror](#):
>
> There are daily reconciliation tasks to fix any data oddities

Whatever it was, it’s fixed overnight. Any way to trigger the task via Sidekiq?

---

<div class="post-metadata">

### Author: ![JammyDodger](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/jammydodger/32/254611_2.png) [@JammyDodger](https://meta.discourse.org/u/JammyDodger)
#### Post date: [6월 8, 2024, 12:37오후 UTC](https://meta.discourse.org/t/default-view-only-showing-2-poster-avatars-unlike-discourse-meta/89386/5 "2024-06-08T12:37:24Z")

</div>

이 주제는 2192일 후 자동으로 닫혔습니다. 더 이상 새 답글을 작성할 수 없습니다.
