How to disable disqus comment voting / clout control

There's been some back and forth on the comment rating and clout surrounding the disqus commenting system, which I use and happen to like. I found a quick and dirty solution to hiding the voting arrows on your site using jQuery.

Since I brought up the initial discussion on the disqus forum, there has been some dialogue about the topic, which is good. At one time I had a -1 clout for no real apparent reason. It seems like they've been tweaking it a bit and things have definitely improved.

I know there are some users who would like to disable comment voting on their site. When there are controversial topics and/or heated debate, often times a comment will get rated down simply because someone has a difference of opinion, as opposed to rating the actual quality of the comment. Meaning, the comment may have been insightful but if you don't agree, you vote it down. Not cool.

Anyway I don't really have a beef, I just wanted to see if I could disable it. This is a no brainer solution but thought I'd point it out anyway. You'll need to have jQuery and be somewhat familiar with javascript I guess.

$(document).ready(function(){ $('a.dsq-arrows').hide(); });

It's so silly and simple it hardly calls for a blog entry. But I like to show how simple and straight forward jQuery is. What this does is uses the almighty power of the jQuery Selector to hide the element surrounding the arrows. jQuery selectors are a lot like how you use selectors in CSS.

I should mention that I took the script off my site so you're welcome to rate my comments down if you disagree :P

Comments    

07.23.2008   danielha
Cool. :-)

You can also achieve the same effect by adding the following CSS:

#dsq-content #dsq-comments .dsq-arrows { display: none; }
07.23.2008   jyoseph
hahah, seriously though, how funny is it that I didn't even think of that?? Awesome.

(btw, rated your very informative comment up)
07.23.2008   Matt Burris
I was about to say, why wouldn't display: none not work in CSS? Someone beat me to it, however. :P

This is why I don't visit digg anymore. I was an early adopter of the site, but I was horrified at how quickly the comment system became as bad as YouTube's. I swear, I'd lose brain cells just reading some of the comments (on both sites.) The voting down part just because people don't agree with a certain person's opinions flies in the face of what the internet is all about.
07.23.2008   RobLoach
Hey Joe........ Why isn't your site on this list? http://www.smashingmagazine.com/2006/12/19/50-beautiful-css-based-web-designs-in-2006 .... I guess because that's 2006 and this is 2008? That's web 2.0, and you're web 3.0!
07.23.2008   jyoseph
That's easy to answer, I'm so 733t i'm not 733t to just ordinary 733t peeps yet. Follow that?

Leave One

  • Required fields are marked with an asterisk *

Tags
Share
Back Up   |   Blog Feed