# Limit one post per person?

**URL:** https://meta.discourse.org/t/limit-one-post-per-person/80072
**Category:** Feature
**Created:** [February 8, 2018, 1:47am UTC](https://meta.discourse.org/t/limit-one-post-per-person/80072 "2018-02-08T01:47:08Z")
**Posts on this page:** 4
**Page:** 1

<div class="post-metadata">

### Author: ![jesselperry](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/jesselperry/32/119501_2.png) [@jesselperry](https://meta.discourse.org/u/jesselperry)
#### Post date: [February 8, 2018, 1:47am UTC](https://meta.discourse.org/t/limit-one-post-per-person/80072/1 "2018-02-08T01:47:08Z")

</div>

Is there any way on the category-level or topic-level of settings to limit each member to not be able to post more than once? I have a topic where people share their social media information and I want to prevent conversations starting beyond the first post with that information shared 👍

---

<div class="post-metadata">

### Author: ![meglio](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/meglio/32/71444_2.png) [@meglio](https://meta.discourse.org/u/meglio)
#### Post date: [February 8, 2018, 6:10am UTC](https://meta.discourse.org/t/limit-one-post-per-person/80072/2 "2018-02-08T06:10:25Z")

</div>

Love this feature request.

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.

---

<div class="post-metadata">

### Author: ![erlend\_sh](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/erlend_sh/32/119475_2.png) [@erlend\_sh](https://meta.discourse.org/u/erlend_sh)
#### Post date: [February 8, 2018, 9:31am UTC](https://meta.discourse.org/t/limit-one-post-per-person/80072/3 "2018-02-08T09:31:50Z")

</div>

No such feature exists yet. The use case makes sense, but I can only see this as a plugin.

Have you tried it in practice? Are users actually so unwieldy that you can’t politely ask them to just post once? Follow that up with some polite-but-consistent deletions of transgressors and I think you’d be fine.

---

<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: [February 10, 2018, 9:17am 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 😅
