# 发布首次和回归用户的通知

**URL:** https://meta.discourse.org/t/post-notices-for-first-time-and-returning-users/112078
**Category:** Announcements
**Tags:** new-feature, post-notices
**Created:** [2019年三月19日 17:25 UTC](https://meta.discourse.org/t/post-notices-for-first-time-and-returning-users/112078 "2019-03-19T17:25:00Z")
**Posts on this page:** 20
**Page:** 1

<div class="post-metadata">

### Author: ![awesomerobot](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/awesomerobot/32/142900_2.png) [@awesomerobot](https://meta.discourse.org/u/awesomerobot)
#### Post date: [2019年三月19日 17:25 UTC](https://meta.discourse.org/t/post-notices-for-first-time-and-returning-users/112078/1 "2019-03-19T17:25:00Z")

</div>

为了鼓励对首次发帖或许久未发帖的用户展现善意，我们创建了一项新功能，以特别关注这些新用户或回归用户。

这些横幅对其他用户可见，但对发帖者本人不可见……默认情况下，仅对活跃度达到 [信任等级 2](https://blog.discourse.org/2018/06/understanding-discourse-trust-levels/) 的社区成员可见。

它们的外观如下：

 ![image](https://global.discourse-cdn.com/meta/original/4X/5/4/7/5473484a7d71c13e4d480d17badbc6750c167ef2.png)

 ![image](https://global.discourse-cdn.com/meta/original/4X/f/0/2/f02e3965dcd9b660736cea71e385c01470cea416.png)

## 如何配置此功能？

管理员可以在站点设置中调整这些选项：

- `new user notice tl` 控制谁能看到新用户通知，默认为 TL2。
- `returning user notice tl` 控制谁能看到回归用户通知，默认为 TL2。
- `returning users days` 控制用户被视为回归用户的时间阈值，默认为 120 天。
- `old post notice days` 控制何时移除背景色并淡化通知，默认为 14 天。

如果您想修改这些通知的文本，可以在 _管理 \> 外观 \> 站点文本_ 中进行设置（搜索 `post.notice`）。

## 如何禁用此功能？

有两种选项：

- **对非工作人员和非 TL4 用户禁用** ：将 `new user notice tl` 和/或 `returning user notice tl` 提升至信任等级 4。TL4 仅通过手动授予，因此只有您的工作人员和最高信任等级的用户才能看到这些通知。

- **全局禁用横幅** ：在 _管理 \> 外观 \> 主题_ 中添加 CSS 以全局禁用这些横幅。

以下 CSS 将隐藏这两种类型的通知：

```css
.post-notice {
  display: none;
}

```

或者，您也可以单独隐藏特定类型的通知：

```css
.post-notice.new-user {
  display: none;
}

.post-notice.returning-user {
  display: none;
}

.post-notice.old {
  display: none;
}

```

---

<div class="post-metadata">

### Author: ![Alexander\_Wright](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/alexander_wright/32/119518_2.png) [@Alexander\_Wright](https://meta.discourse.org/u/Alexander_Wright)
#### Post date: [2019年三月19日 21:18 UTC](https://meta.discourse.org/t/post-notices-for-first-time-and-returning-users/112078/8 "2019-03-19T21:18:07Z")

</div>

These notices are awesome, thank you!

---

<div class="post-metadata">

### Author: ![yanokwa](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/yanokwa/32/105083_2.png) [@yanokwa](https://meta.discourse.org/u/yanokwa)
#### Post date: [2019年三月20日 18:01 UTC](https://meta.discourse.org/t/post-notices-for-first-time-and-returning-users/112078/9 "2019-03-20T18:01:29Z")

</div>

This is a great feature, but it’d be even better if we could not have these notices show up on certain topics. We have an introduce yourself topic and the first time poster notice adds a lot of noise.

---

<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: [2019年三月20日 18:25 UTC](https://meta.discourse.org/t/post-notices-for-first-time-and-returning-users/112078/10 "2019-03-20T18:25:31Z")

</div>

You can hide them using the topic id 😉

```css
[data-topic-id="1234"] .post-notice {
  display: none;
}

```

---

<div class="post-metadata">

### Author: ![tobiaseigen](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/tobiaseigen/32/539204_2.png) [@tobiaseigen](https://meta.discourse.org/u/tobiaseigen)
#### Post date: [2019年三月20日 22:11 UTC](https://meta.discourse.org/t/post-notices-for-first-time-and-returning-users/112078/11 "2019-03-20T22:11:46Z")

</div>

How about hiding on topics with specific tag?

---

<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: [2019年三月20日 22:30 UTC](https://meta.discourse.org/t/post-notices-for-first-time-and-returning-users/112078/12 "2019-03-20T22:30:15Z")

</div>

I don’t think that’s possible right now.

@maja, do you think you can do your ✨ and add one class per tag in the topic view (everywhere we show the `category-*` class if that’s easy enough)?

---

<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年三月21日 04:11 UTC](https://meta.discourse.org/t/post-notices-for-first-time-and-returning-users/112078/13 "2019-03-21T04:11:23Z")

</div>

This is ✨ **fantastic!** ✨ After this feature was implemented, it sure **did** encourage our members to start welcoming new users! This helps our new users be encouraged to keep chatting! I’ve probably seen no new users **not** being welcomed, which is great! Great job Team Discourse!

---

<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: [2019年三月22日 00:15 UTC](https://meta.discourse.org/t/post-notices-for-first-time-and-returning-users/112078/14 "2019-03-22T00:15:15Z")

</div>

Some amazing results as well. Here’s a returning user from 2013 🤯

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

Also definitely interesting when someone’s returning post is a PM as well.

 ![image](https://global.discourse-cdn.com/meta/original/3X/a/9/a9ea8b114ddc9ccc61b4824ec0a58acf75a66513.jpeg)

---

<div class="post-metadata">

### Author: ![Steven](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/steven/32/187890_2.png) [@Steven](https://meta.discourse.org/u/Steven)
#### Post date: [2019年三月22日 21:42 UTC](https://meta.discourse.org/t/post-notices-for-first-time-and-returning-users/112078/20 "2019-03-22T21:42:19Z")

</div>

Via css, it’s easy to hide the notice. If we use @awesomerobot guide in the first post and add the class `.private_message`, it should work.

I didn’t try it, but there’s no reason not to

```css
.private_message .post-notice {
  display: none;
}

```

---

<div class="post-metadata">

### Author: ![iamntz](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/iamntz/32/114670_2.png) [@iamntz](https://meta.discourse.org/u/iamntz)
#### Post date: [2019年三月27日 13:34 UTC](https://meta.discourse.org/t/post-notices-for-first-time-and-returning-users/112078/23 "2019-03-27T13:34:36Z")

</div>

Just a heads up: some languages (e.g. romanian) doesn’t have a generic pronoun (like `their`), therefore you’re stuck with using a translation of either he or she.

Maybe this functionality need to be disabled by default on non-english forums?

---

<div class="post-metadata">

### Author: ![Stephen](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/stephen/32/95011_2.png) [@Stephen](https://meta.discourse.org/u/Stephen)
#### Post date: [2019年三月27日 13:50 UTC](https://meta.discourse.org/t/post-notices-for-first-time-and-returning-users/112078/24 "2019-03-27T13:50:03Z")

</div>

Probably better to look at a different line than to disable a feature entirely.

---

<div class="post-metadata">

### Author: ![pfaffman](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/pfaffman/32/120154_2.png) [@pfaffman](https://meta.discourse.org/u/pfaffman)
#### Post date: [2019年三月27日 16:05 UTC](https://meta.discourse.org/t/post-notices-for-first-time-and-returning-users/112078/25 "2019-03-27T16:05:03Z")

</div>

> [@iamntz](#):
>
> Just a heads up: some languages (e.g. romanian) doesn’t have a generic pronoun (like `their` ), therefore you’re stuck with using a translation of either he or she.

Some would argue that English doesn’t either. The other solution is to use something like “he or she”.

---

<div class="post-metadata">

### Author: ![Stephen](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/stephen/32/95011_2.png) [@Stephen](https://meta.discourse.org/u/Stephen)
#### Post date: [2019年三月27日 16:35 UTC](https://meta.discourse.org/t/post-notices-for-first-time-and-returning-users/112078/26 "2019-03-27T16:35:23Z")

</div>

We don’t capture gender to determine that. Talking to a Romanian colleague though, they insisted there were ways around this.

---

<div class="post-metadata">

### Author: ![awesomerobot](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/awesomerobot/32/142900_2.png) [@awesomerobot](https://meta.discourse.org/u/awesomerobot)
#### Post date: [2019年三月27日 16:37 UTC](https://meta.discourse.org/t/post-notices-for-first-time-and-returning-users/112078/27 "2019-03-27T16:37:57Z")

</div>

> [@pfaffman](#):
>
> Some would argue that English doesn’t either.

I think at this point most people making that argument in regard to English are doing so in bad faith.

> [@iamntz](#):
>
> Just a heads up: some languages (e.g. romanian) doesn’t have a generic pronoun (like `their` ), therefore you’re stuck with using a translation of either he or she.

This is a problem that has been discussed a bit more in other topics, including [Gender and translations](https://meta.discourse.org/t/gender-and-translations/73728) — Is it correct to say that Slavic languages fall into similar issues as other languages discussed where gender is often built-in to the language?

---

<div class="post-metadata">

### Author: ![pfaffman](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/pfaffman/32/120154_2.png) [@pfaffman](https://meta.discourse.org/u/pfaffman)
#### Post date: [2019年三月27日 16:47 UTC](https://meta.discourse.org/t/post-notices-for-first-time-and-returning-users/112078/28 "2019-03-27T16:47:25Z")

</div>

> [@awesomerobot](#):
>
> I think at this point most people making that argument in regard to English are doing so in bad faith.

I’m on your side. I’m not convinced that it’s bad faith, though.

Admittedly, I am an Old White Guy, but I’m pretty far ahead of lots of Old White Guys on such issues. It wasn’t that long ago that I assiduously `he/she`d and/or `(s)he`d my way through a bunch of academic writing and the singular `they` wasn’t in the stuff I was reading a mere ten years ago, even by feminists who wouldn’t capitalize their names.

While those other Old White Guys are wrong, I’m not convinced that it’s bad faith. Oh, but you said _most._ So you’re right. 😉

---

<div class="post-metadata">

### Author: ![awesomerobot](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/awesomerobot/32/142900_2.png) [@awesomerobot](https://meta.discourse.org/u/awesomerobot)
#### Post date: [2019年三月27日 16:51 UTC](https://meta.discourse.org/t/post-notices-for-first-time-and-returning-users/112078/29 "2019-03-27T16:51:09Z")

</div>

Oh absolutely, I didn’t mean to imply that you weren’t. I was trying to express that it’s a solved issue not really worth discussing with English, but there are a bunch of complexities with other languages where nouns and verb tenses carry gender so swapping in a single word isn’t always possible.

---

<div class="post-metadata">

### Author: ![PaulL](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/paull/32/132803_2.png) [@PaulL](https://meta.discourse.org/u/PaulL)
#### Post date: [2019年三月27日 17:39 UTC](https://meta.discourse.org/t/post-notices-for-first-time-and-returning-users/112078/30 "2019-03-27T17:39:35Z")

</div>

In many languages, gender isn’t so tightly linked to sex as it is in English. In French, for example, if you refer to a man as “une personne,” you use the feminine gender as long as “personne” is the focus. To return to referring to him as “il,” you have to use some masculine noun. It is not the person’s sex that determines, but the word’s gender. As Saki puts in the mouth of one of his characters, “French is a most dreadfully unsexing language!”

---

<div class="post-metadata">

### Author: ![danekhollas](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/danekhollas/32/79637_2.png) [@danekhollas](https://meta.discourse.org/u/danekhollas)
#### Post date: [2019年三月27日 18:47 UTC](https://meta.discourse.org/t/post-notices-for-first-time-and-returning-users/112078/32 "2019-03-27T18:47:19Z")

</div>

> [@awesomerobot](#):
>
> Is it correct to say that Slavic languages fall into similar issues as other languages

Indeed, slavic languagages have that (and many other problems) as well.  
Also, In Czech we have 7 declension types which makes software translations (with variables in particular) challenging, to say the least.

Romans with their five declensions had it _much_ easier:

[![](https://global.discourse-cdn.com/meta/original/4X/a/8/9/a89c935f656066fe5d4d1c6c1071927069e650a4.jpeg "Eddie Izzard on Latin") ](https://www.youtube.com/watch?v=NI8UZubOJlo)

(sorry for off-topic)

---

<div class="post-metadata">

### Author: ![dan](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/dan/32/101549_2.png) [@dan](https://meta.discourse.org/u/dan)
#### Post date: [2019年三月27日 19:10 UTC](https://meta.discourse.org/t/post-notices-for-first-time-and-returning-users/112078/33 "2019-03-27T19:10:53Z")

</div>

There is no generic pronoun in Romanian and I believe no other Romanic languages have it either. ☹

The good part is that the messages can be somewhat rephrased to not include the gender:

> E prima oara cand %{user} a postat. Bine a venit!

\* It’s first time %{user} has posted. Welcome!

> A trecut ceva timp de cand %{user} a fost activ - ultimul mesaj trimis a fost pe %{date}.

\* It’s been a while since %{user} was active - last message was sent on %{date}.

---

<div class="post-metadata">

### Author: ![tophee](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/tophee/32/73406_2.png) [@tophee](https://meta.discourse.org/u/tophee)
#### Post date: [2019年三月28日 00:23 UTC](https://meta.discourse.org/t/post-notices-for-first-time-and-returning-users/112078/34 "2019-03-28T00:23:36Z")

</div>

> [@awesomerobot](#):
>
> From our perspective it makes as much sense in a PM as a public topic.

I would agree if the notice is _also_ posted if the same user who just posted a PM then also post in the public forum. Is this the case?

[下一頁](https://meta.discourse.org/t/post-notices-for-first-time-and-returning-users/112078.md?page=2)
