# 我的社区名称前出现了一个奇怪的符号

**URL:** https://meta.discourse.org/t/a-strange-symbol-before-the-name-of-my-community/90466
**Category:** WordPress
**Created:** [2018 年6 月 22 日 08:31 UTC](https://meta.discourse.org/t/a-strange-symbol-before-the-name-of-my-community/90466 "2018-06-22T08:31:32Z")
**Posts on this page:** 6
**Page:** 1

<div class="post-metadata">

### 作者： ![alexwoolfson](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/alexwoolfson/32/99119_2.png) [@alexwoolfson](https://meta.discourse.org/u/alexwoolfson)
#### 发布日期： [2018 年6 月 22 日 08:31 UTC](https://meta.discourse.org/t/a-strange-symbol-before-the-name-of-my-community/90466/1 "2018-06-22T08:31:32Z")

</div>

Hello,

I’ve just created my first Discourse site to give my readers and Patrons an alternative place to comment, and I’ve been having a tremendously positive experience, both with Discourse overall and the WP-Discourse plugin.

In my tests, it does everything I hoped it would, including allowing me to keep the Disqus comments under the page in addition to the Discourse comments while I transition my readers over to the new community.

There is only one odd thing I’ve noticed. On my site, the plugin is adding a weird circle-with-an-x symbol before the name of my community, like this:

 ![2018-06-22_01-20-17](https://global.discourse-cdn.com/meta/original/3X/1/d/1d4695b7a114c0b215271dfb3bfc8c741e83e7a7.png)

I’m sure it’s something obvious that I’ve missed, but I’ve checked my settings on my Wordpress site, and I don’t see any extra symbols that I’ve added in the text fields.

I had updated to the latest version of Discourse and this plugin before running my first tests tonight, so I’m running the latest versions of everything.

How should I troubleshoot this?

Any help would be greatly appreciated because, besides this one, weird thing, everything else seems to work like a charm. 🙂

Thanks!

---

<div class="post-metadata">

### 作者： ![codinghorror](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/codinghorror/32/110067_2.png) [@codinghorror](https://meta.discourse.org/u/codinghorror)
#### 发布日期： [2018 年6 月 22 日 09:40 UTC](https://meta.discourse.org/t/a-strange-symbol-before-the-name-of-my-community/90466/2 "2018-06-22T09:40:13Z")

</div>

That looks like something added with CSS, perhaps? Did you check your site’s CSS in your browser F12 inspector?

Doesn’t look like anything to do with Discourse.

 ![image](https://global.discourse-cdn.com/meta/original/3X/6/d/6db227d838b9b8ac0339b903316ab4aac3fd019f.jpg)

---

<div class="post-metadata">

### 作者： ![simon](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/simon/32/339122_2.png) [@simon](https://meta.discourse.org/u/simon)
#### 发布日期： [2018 年6 月 22 日 15:38 UTC](https://meta.discourse.org/t/a-strange-symbol-before-the-name-of-my-community/90466/3 "2018-06-22T15:38:59Z")

</div>

If you can send me a link to a post that is happening on, I’ll take a look.

---

<div class="post-metadata">

### 作者： ![alexwoolfson](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/alexwoolfson/32/99119_2.png) [@alexwoolfson](https://meta.discourse.org/u/alexwoolfson)
#### 发布日期： [2018 年6 月 22 日 20:36 UTC](https://meta.discourse.org/t/a-strange-symbol-before-the-name-of-my-community/90466/4 "2018-06-22T20:36:40Z")

</div>

Thank you, Simon. I reactivated the plugin. You can find an example on this page:

> **[The Young Protectors—Spooky Jones: Past Sins—Page 7 - Young Protectors Webcomics](https://youngprotectors.com/typ2/spooky-jones-past-sins-page-7/)**
>
> Spooky explains to Anaado that his magic wasn't intentional in the 83rd page of Alex Woolfson's 2nd gay superhero comic The Young Protectors: Legendary.

Just scroll down to just below the big, green Patreon ad. The Discourse comments are just below that.

I appreciate your help with this. Please let me know if you need anything else.

---

<div class="post-metadata">

### 作者： ![simon](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/simon/32/339122_2.png) [@simon](https://meta.discourse.org/u/simon)
#### 发布日期： [2018 年6 月 22 日 20:45 UTC](https://meta.discourse.org/t/a-strange-symbol-before-the-name-of-my-community/90466/5 "2018-06-22T20:45:21Z")

</div>

There is some CSS being added by your theme or a plugin with this rule:

```plaintext
.comment-reply-title a:before {
    font: 100%/1 awesome;
    content: '\f057';
    padding: 0 .25rem 0 0;
}

```

The easiest thing to do would be to find that CSS and remove it. You could also add a CSS rule that targets `.discourse-comments-area .comment-reply-title a:before` and sets the content to `''`.

---

<div class="post-metadata">

### 作者： ![codinghorror](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/codinghorror/32/110067_2.png) [@codinghorror](https://meta.discourse.org/u/codinghorror)
#### 发布日期： [2018 年6 月 22 日 21:54 UTC](https://meta.discourse.org/t/a-strange-symbol-before-the-name-of-my-community/90466/6 "2018-06-22T21:54:08Z")

</div>


