# 차단 단어 및 사용자 정의 버튼 링크 관련 도움 요청

**URL:** https://meta.discourse.org/t/help-with-blocked-words-and-custom-button-links/275381
**Category:** Support
**Created:** [8월 16, 2023, 1:28오후 UTC](https://meta.discourse.org/t/help-with-blocked-words-and-custom-button-links/275381 "2023-08-16T13:28:04Z")
**Posts on this page:** 5
**Page:** 1

<div class="post-metadata">

### Author: ![AryaM](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/aryam/32/312508_2.png) [@AryaM](https://meta.discourse.org/u/AryaM)
#### Post date: [8월 16, 2023, 1:28오후 UTC](https://meta.discourse.org/t/help-with-blocked-words-and-custom-button-links/275381/1 "2023-08-16T13:28:04Z")

</div>

이 두 가지에 대해 도와주실 분 계신가요?

1. 특정 단어가 게시되는 것을 어떻게 차단할 수 있을까요?
2. 화면에 추가 버튼을 삽입하는 방법은 무엇인가요? 예를 들어 MS Society에는 커뮤니티 가이드라인 버튼이 있습니다.  
 ![image](https://global.discourse-cdn.com/meta/original/4X/d/4/5/d45fbf927355c7988560eac408fc05d877eb1ae7.jpeg)  
이 플랫폼에 대해 정말 초보자인데, 도움이 정말로 큰 도움이 될 것입니다!

---

<div class="post-metadata">

### Author: ![Lilly](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/lilly/32/575047_2.png) [@Lilly](https://meta.discourse.org/u/Lilly)
#### Post date: [8월 16, 2023, 2:41오후 UTC](https://meta.discourse.org/t/help-with-blocked-words-and-custom-button-links/275381/2 "2023-08-16T14:41:45Z")

</div>

안녕하세요 @AryaM 👋

> [@AryaM](#):
>
> 특정 단어가 게시되는 것을 막는 방법은 무엇인가요?

이 경우 `admin-customize-watched words` 로 이동하여 Block(차단) 또는 Censor(편집) 기능을 사용할 수 있습니다.

 ![IMG_0189](https://global.discourse-cdn.com/meta/original/4X/e/4/1/e416c4ee2a02940ea106d4f4a11caeb9845db154.jpeg)

> [@AryaM](#):
>
> 화면에 추가적인 버튼을 삽입하는 방법은 무엇인가요? 예를 들어 MS society에는 커뮤니티 가이드라인 버튼이 있습니다.

이를 수행하려면 커스텀 버튼이나 링크가 수행해야 할 작업에 따라 테마 컴포넌트를 생성해야 할 가능성이 높습니다. 더 구체적으로 말씀해 주시면 도움을 드릴 수 있을 것입니다. 또는 이 작업을 대신 해 줄 사람을 찾고 계신다면 #Marketplace 채널에 게시물을 올릴 수도 있습니다.

도움이 되셨으면 좋겠습니다 🙂

---

<div class="post-metadata">

### Author: ![Canapin](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/canapin/32/119591_2.png) [@Canapin](https://meta.discourse.org/u/Canapin)
#### Post date: [8월 16, 2023, 4:20오후 UTC](https://meta.discourse.org/t/help-with-blocked-words-and-custom-button-links/275381/3 "2023-08-16T16:20:14Z")

</div>

> [@AryaM](#):
>
> 1. 이 플랫폼에 정말 초보자인데, 도움이 많이 필요해요!

이 작업을 수행하는 데는 학습 곡선이 있지만, 한 번 해두면 큰 도움이 될 것입니다.

간단히 말하면, 튜토리얼 중 Discourse 수정과 관련하여 원하시는 것을 달성하는 부분은 여기에 있습니다: [https://meta.discourse.org/t/beginners-guide-to-developing-discourse-themes/93648#modifying-discourse-templates-22](https://meta.discourse.org/t/beginners-guide-to-developing-discourse-themes/93648#modifying-discourse-templates-22)

바로 사용할 수 있는 스켈레톤(기본 구조)을 원하신다면 다음과 같이 하세요.

1. 관리자 → 사용자 지정 → 테마에서 새 빈 테마 컴포넌트를 생성하세요. (테마에 활성화하거나 현재 테마를 선택하는 것을 잊지 마세요.)

2. CSS/HTML 편집으로 이동하세요.

3. Head에 이 코드를 붙여넣으세요:

```html
<script type="text/x-handlebars" data-template-name="/connectors/above-main-container/custom-buttons">
  <div class="wrap">
    <div class="custom-buttons">
        <a href="/faq">커뮤니티 가이드라인</a> | <a href="#">모더터에게 문의</a>
    </div>
  </div>
</script>

```

1. CSS 탭에 이 코드를 붙여넣으세요:

```css
.custom-buttons {
    margin: 1em 0;
    text-align: right;
}

```

결과는 다음과 같이 표시됩니다:

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

---

<div class="post-metadata">

### Author: ![AryaM](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/aryam/32/312508_2.png) [@AryaM](https://meta.discourse.org/u/AryaM)
#### Post date: [8월 17, 2023, 10:14오전 UTC](https://meta.discourse.org/t/help-with-blocked-words-and-custom-button-links/275381/4 "2023-08-17T10:14:30Z")

</div>

@Lilly @Canapin 정말 큰 도움이 됐어요. 정말 감사합니다!

---

<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: [9월 16, 2023, 10:15오전 UTC](https://meta.discourse.org/t/help-with-blocked-words-and-custom-button-links/275381/5 "2023-09-16T10:15:19Z")

</div>

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.
