# 在“最新”类别中将 latest-poster 更改为 original-poster 或 posters

**URL:** <https://meta.discourse.org/t/change-latest-poster-to-original-poster-or-posters-in-latest-category/111671>\
**Category:** Support\
**Created:** [2019年三月15日 08:50 UTC](https://meta.discourse.org/t/change-latest-poster-to-original-poster-or-posters-in-latest-category/111671 "2019-03-15T08:50:20Z")\
**Posts on this page:** 6\
**Page:** 1

<div class="post-metadata">

**Author:** ![Krijn\_Reijnders1](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/krijn_reijnders1/32/131853_2.png) [@Krijn\_Reijnders1](https://meta.discourse.org/u/Krijn_Reijnders1)\
**Post date:** [2019年三月15日 08:50 UTC](https://meta.discourse.org/t/change-latest-poster-to-original-poster-or-posters-in-latest-category/111671/1 "2019-03-15T08:50:20Z")

</div>

Hi all,

Is it possible to remove the profile picture from the “Latest” Section, or to make that profile pic the picture of the orginal poster?

 ![image](https://global.discourse-cdn.com/meta/original/3X/2/0/20a8e89207a3110a62017834d1b41054ecd6e82a.png)

I usually reply to topics pretty fast, but now that whole list has only my profile picture. Thus it looks like I am the only user of the forum…

EDIT: it seems that what I want to change in the UX is instead of the latest-poster it should display all posters or the original poster. Removing the poster is easy enough and solved below

---

<div class="post-metadata">

**Author:** ![Chaboi\_3000](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/chaboi_3000/32/163015_2.png) [@Chaboi\_3000](https://meta.discourse.org/u/Chaboi_3000)\
**Post date:** [2019年三月15日 09:10 UTC](https://meta.discourse.org/t/change-latest-poster-to-original-poster-or-posters-in-latest-category/111671/2 "2019-03-15T09:10:11Z")

</div>

Should be able to do with some UX changes. I dunno about specifically how though…

---

<div class="post-metadata">

**Author:** ![Krijn\_Reijnders1](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/krijn_reijnders1/32/131853_2.png) [@Krijn\_Reijnders1](https://meta.discourse.org/u/Krijn_Reijnders1)\
**Post date:** [2019年三月15日 10:29 UTC](https://meta.discourse.org/t/change-latest-poster-to-original-poster-or-posters-in-latest-category/111671/3 "2019-03-15T10:29:24Z")

</div>

Ideally, I could change it from

 ![image](https://global.discourse-cdn.com/meta/original/3X/c/5/c5c714e3010bdff449fde41f23be628c6aa3931f.png)

to

 ![image](https://global.discourse-cdn.com/meta/original/3X/3/b/3b5e525d13a0fbe1ec45a8688f78a9b7cba340cf.png)

(though with much less whitespace of course)

Trying to figure out how to do this with UX changes, but am new to this. So if someone could help me a bit, that would be great!

---

<div class="post-metadata">

**Author:** ![Krijn\_Reijnders1](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/krijn_reijnders1/32/131853_2.png) [@Krijn\_Reijnders1](https://meta.discourse.org/u/Krijn_Reijnders1)\
**Post date:** [2019年三月15日 11:03 UTC](https://meta.discourse.org/t/change-latest-poster-to-original-poster-or-posters-in-latest-category/111671/4 "2019-03-15T11:03:43Z")

</div>

I managed to remove the avatar by adding

```css
.latest-topic-list-item {
    .topic-poster { 
        visibility: hidden;
        width: 0em;
    }
}

```

Will update if I manage to get it the same as on the Latest-page

---

<div class="post-metadata">

**Author:** ![merefield](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/merefield/32/176214_2.png) [@merefield](https://meta.discourse.org/u/merefield)\
**Post date:** [2019年三月15日 11:06 UTC](https://meta.discourse.org/t/change-latest-poster-to-original-poster-or-posters-in-latest-category/111671/5 "2019-03-15T11:06:02Z")

</div>

Just a suggestion:

`display: none;`

should do it without having to change the size.

---

<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:** [2022年五月3日 17:24 UTC](https://meta.discourse.org/t/change-latest-poster-to-original-poster-or-posters-in-latest-category/111671/6 "2022-05-03T17:24:08Z")

</div>


