# 每人限发一帖？

**URL:** <https://meta.discourse.org/t/limit-one-post-per-person/80072>\
**Category:** Feature\
**Created:** [2018年二月8日 01:47 UTC](https://meta.discourse.org/t/limit-one-post-per-person/80072 "2018-02-08T01:47:08Z")\
**Posts on this page:** 1\
**Showing post:** 4

<div class="post-metadata">

**Author:** ![Johani](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/johani/32/176920_2.png) [@Johani](https://meta.discourse.org/u/Johani)\
**Post date:** [2018年二月10日 09:17 UTC](https://meta.discourse.org/t/limit-one-post-per-person/80072/4 "2018-02-10T09:17:40Z")

</div>

> [@meglio](#):
>
> I have use-cases for it in my community. For instance, we have a topic where veterinaries can upload their diplomas. It would make sense to limit such topics to a single poster per topic.

Your use case can be achieved with CSS.

Change `.category-NAME` to the category you’re targeting.

```plaintext
.category-NAME {
	// hide reply buttons
	button.reply,
	.timeline-footer-controls button.create,
	.topic-footer-main-buttons button.create {
		display: none;
	}
	// just in case
	&:not(.staff) & {
		.topic-post:not(:first-of-type),
		.time-gap {
			display: none;
		}
	}
}

```

This will remove any reply button from the posts in the selected category.

 ![Capture](https://global.discourse-cdn.com/meta/original/3X/b/f/bf547b128c1692f5d2facb93408f2e9ad8375ddd.PNG)

* * *

The use case in the OP requires something more intensive 😅

---

_[View the full topic](https://meta.discourse.org/t/limit-one-post-per-person/80072)._
