Vanilla 1 is no longer supported or maintained. If you need a copy, you can get it here.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
Any chance of a 'digg-esque' like feature for burying comments?
I'm wondering if it'd be possible to incorporate this with the voting extension... if a comment gets x number of negative votes that it is automatically hidden, but can be 'shown' if a user clicks on the comment's link? On digg.com, for those who aren't aware, comments are 'dug' or 'undug' and if they are 'undug' 5 times, they are 'buried'.
Maybe the extension could include a little thumbs up/thumbs down icon in the corner of the post?
0
This discussion has been closed.
Comments
Having said that, I do find some value in seeing if other people have agreed or disagreed, I just wouldn't like the hiding.
I do not this autohiding should be default behaviour, but as an option for people to enable, why not eh?
Personally I wish it was either updated or removed until it is. It's the single most confusing thing about Vanilla.
"Next depending on your theme you need to edit your comments theme file." WTF. Look for "foreach ($comments as $comment)". You can insert it in that loop. WTF
Ok I can make this minus a way to track who has already voted. in other words the voting button won't be grayed out after u vote. the rest of the stuff like number of votes, collapsing of comments if less than say -4 votes etc, that I can do.
If anyone has any idea how would track who has voted, let me know
and keep track of UserID and CommentID. But problem is optimization. for every comment i will have to do a query to the database and check if the user has voted. which will be very bad for the servers. not to mention that table will increase in size exponentially. Each Comment can have thousands of users voting. each forum has thousands of comments