# /tag/ 페이지에서 주제 목록 상단 광고를 숨기는 방법?

**URL:** https://meta.discourse.org/t/hide-a-topic-list-top-ad-from-tag-pages/140368
**Category:** Support
**Created:** [2월 1, 2020, 12:25오후 UTC](https://meta.discourse.org/t/hide-a-topic-list-top-ad-from-tag-pages/140368 "2020-02-01T12:25:31Z")
**Posts on this page:** 3
**Page:** 1

<div class="post-metadata">

### Author: ![Krischan](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/krischan/32/47290_2.png) [@Krischan](https://meta.discourse.org/u/Krischan)
#### Post date: [2월 1, 2020, 12:25오후 UTC](https://meta.discourse.org/t/hide-a-topic-list-top-ad-from-tag-pages/140368/1 "2020-02-01T12:25:31Z")

</div>

태그 페이지에서 하우스 광고를 CSS로 숨기는 방법에 대한 힌트를 주실 수 있나요? 감사합니다!

---

<div class="post-metadata">

### Author: ![smrtey](https://avatars.discourse-cdn.com/v4/letter/s/db5fbb/32.png) [@smrtey](https://meta.discourse.org/u/smrtey)
#### Post date: [2월 1, 2020, 6:44오후 UTC](https://meta.discourse.org/t/hide-a-topic-list-top-ad-from-tag-pages/140368/2 "2020-02-01T18:44:44Z")

</div>

태그나 하우스 애드를 사용하지 않아서 테스트는 못 해봤지만, 아마 `</head> ` 섹션에 아래처럼 넣으면 될 겁니다.

```plaintext
<script type="text/discourse-plugin" version="0.8">
  api.onPageChange((url) => {
    var isTag = /\/tag\//;
    if (isTag.test(url) == true) {
      document.getElementById("main").classList.add("tag");
    } 
    else {
        document.getElementById("main").classList.remove("tag");
    }
  });
</script>

```

이렇게 하면 `yoursite.com/tag/tag-names`처럼 URL에 /tag/가 포함된 모든 페이지에서 `<section id="main" class="ember-application">`에 클래스가 추가되어 `<section id="main" class="ember-application tag">`가 됩니다. 이제 CSS를 사용하여 애드를 포함하는 클래스(예: `ad-class-you-want-to-hide`)를 숨기면 되며, 다음과 같이 작성할 수 있습니다.

```plaintext
#main.tag ad-class-you-want-to-hide {
    display: none
}

```

---

<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: [3월 2, 2020, 6:55오후 UTC](https://meta.discourse.org/t/hide-a-topic-list-top-ad-from-tag-pages/140368/3 "2020-03-02T18:55:36Z")

</div>

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