How to remove Disqus reaction from the counter? How to remove Disqus reaction from the counter? wordpress wordpress

How to remove Disqus reaction from the counter?


Edit 2: We've made this easier by including the comment count/reaction count text options back in the Disqus settings. This is now possible by simply going to your Disqus admin and adding the HTML tags mentioned in the original answer below.

Edit 1: As of a couple of weeks ago the below solution is no longer valid due to the deprecation of the Disqus Classic settings. For now the only way to remove the reaction counter would be to disable reactions entirely, or use the Disqus API to get raw thread data.

In Disqus Classic we had a way to change the comment count link text in the appearance settings. We're working on adding it back to Disqus 2012, but for now you can get around it by following these steps:

  1. Go to your Disqus admin's general settings and uncheck "Enable Disqus 2012" at the very top
  2. After you click Save Changes, you'll see a new tab along the top called "Appearance" - click that
  3. In your Appearance settings, scroll down to "Comment count link"
  4. Remove the word "Comment(s)" from each entry. Then you'll want to insert some HTML with an inline style of "display:none;" to remove the reaction text.

Here's what all of the fields should look like to just get a number:

Zero Comments      | 0<span style="display:none;">One Comment        | 1<span style="display:none;">Multiple Comments  | {num}<span style="display:none;">Zero Reactions     | 0 Reactions</span>One Reaction       | 1 Reaction</span>Multiple Reactions | {num} Reactions</span>

Now you can go ahead an re-enable Disqus 2012 again and the comment count link preferences will carry over.

We've also turned off the "New Disqus" header.


Uncheck "Enable Disqus 2012 features for your site", then go to the appearance tab and there you'll find the comment count and reaction settings which you can customize the words as you want.


2) You can do it with CSS.

#help-notice {    display: none;}