View Full Version : "digg" (aka Rate) individual posts
Hicksatpd
06-09-2006, 12:09 AM
Hi everyone.
This is a feature I would absolutely LOVE to have on my forum.
I got the idea by browing the website digg.com.
The idea behind that site is members submit articles they think are worthy, and then if other members like it, they click to "digg it", and the site keeps track of how many times the article has been "dugg".
Well, for each article posted, users can leave comments. HERE IS WHERE I WANT TO TIE IN A FEATURE TO VB: Each comment posted can be given a green "thumbs up" or a red "thumbs down" by a user. If a comment has 0 ratings, a single "thumbs down" will give the comment a -1. If the comment reaches -10, the comment is then "hidden" (you see a bar acknowledging the post, but you have to click to read it instead of it being listed). This is what I would love to have made available for my vB forum.
The idea is, any given post can be given a "thumbs up" or "thumbs down". If a post recieves, say, 28 votes, and 18 are bad, while 10 are good, that post would be at "-10". This would mean the post would then be "hidden" to where it's just a strip saying something like:
"posted by JohnDoe X hours ago - [below viewing threshold, show comment ("show comment" would be clickable, when you click, it drops open the post to be read; I would gues that 'AJAX' would be useful for this)] - X diggs *insert clickable thumbsdown here* *insert clickable thumbsup here*"
Here is a good example of what I'm talking about:
http://digg.com/science/Drug_clears_most_HIV_from_blood_in_a_matter_of_hou rs_
Thoughts? Is it possible?
I have a community on my board where I am in charge, but it's not like a lot of boards where what the boss says goes, and that's that. It's a very... opinionated group, so my prefered style as head admin is to set up the rules so that there's a lot of self-moderation (I encourage use of the ignore list, for example), and this would be perfect for me.
Tough crowd. =/
Hicksatpd
06-11-2006, 03:14 PM
Last time I ask. The least someone could do is tell me:
a) You're dumb, it's already possible, go to AdminCP and.......
or
b) It's too complicated.
or
c) It's been done, click here.
I appreciate any help.
EricaJoy
06-25-2006, 02:27 AM
I think it would be possible although I don't know how to do it. I say that it would be possible since there is already a ratings system implemented for all threads.
I imagine this would require the ability to rate a thread outside of the thread itself and the number of options going from 5 (1-5 stars) to 2 (yes/no, thumbs up/down, etc).
TygerTyger
06-25-2006, 11:41 AM
Ah, how handy. I was just here looking for this very mod so allow me to add my interest toward something like this. Well, this exactly actually. :)
As far as having a "Recommend Good Music" thread or a "Hot Girls" thread or a "Best Forum Quotes" thread...or any number of other threads where it would be handy to rate what the post is about instead of what the thread is about it would be very valuable.
kenji4861
08-09-2006, 10:47 PM
I want this TOO! I might just hack up the php to do this..
Adrian.
08-10-2006, 11:49 AM
Hi Hicksatpd,
I know what you mean.
Lets hope someone can help you.
In the mean time, you could use this VERY basic mod. It will allow you to easily submit posts to Digg/clesto and more.
I know it's not entirely what you want but... : /
See here - https://vborg.vbsupport.ru/showthread.php?t=123210
Adrian
davidw
08-10-2006, 12:54 PM
Are you looking for something like what they do here?
http://rvb.roosterteeth.com/archive/episode.php?id=196
I am also looking for post rating solution .-)
Also current thread rating system is very poor...
toolblast
10-05-2006, 01:45 AM
This is exactly what I was about to post to get done as well lol. Can any vb coder step up and code it for us?? :D Come on!! :)
Sssin
11-14-2006, 09:39 PM
yea please!
sabret00the
11-14-2006, 09:56 PM
add two new columns to post table (medium text)
store ratings as "userid,userid,userid,userid,userid" in one "1,0,1,0,1" format. ratings will be indexed by userid position, making it easy to convert to arrays and clean both or change rating.
and that's it. quite simple really. the hardest part is writing the javascript for the AJAX.
toolblast
11-15-2006, 02:30 AM
add two new columns to post table (medium text)
store ratings as "userid,userid,userid,userid,userid" in one "1,0,1,0,1" format. ratings will be indexed by userid position, making it easy to convert to arrays and clean both or change rating.
and that's it. quite simple really. the hardest part is writing the javascript for the AJAX.
Is that a hint that you'll try and make it for us when you have a free moment Sabret00the? Pretty-please? ;) hehe
sabret00the
11-15-2006, 09:54 AM
Is that a hint that you'll try and make it for us when you have a free moment Sabret00the? Pretty-please? ;) hehe
i have ZERO javascript skills. thus it's beyond my ability.
ForumDog
11-15-2006, 11:17 AM
I have done this for our forum, it replicates the Digg rating system for not just posts but threads as well, with one or two minor improvements over the Digg system, probably most significantly that my version has three levels of user-definable settings (Digg may do this, I've never actually used their site). You can enable ratings and post visibility based on ratings, or set it so that ratings will show up but posts & threads will not be visibly affected but meaning that you can't place votes yourself, or disable the whole lot and no ratings or effects will appear at all. See here (http://doghouse.forumdog.com/announcement.php?f=43&a=4) for a not-quite-thorough explanation.
I can't release the code because:
a) It's customised code from a customised forum. Not really suitable for releasing as a mod for a default forum without some very major surgery.
b) It's nice to have a feature that others don't have (as far as I know) so I'd rather leave it to attract the curious and send a visitor or two our way. Feel free, by the way. ;)
c) It's based on someone else's code, named the Post Thanks and Post Groan hacks so a substantial amount of the work & credit lies with the author. So if you have the appropriate skills and you're willing to spend the time making the adaptions & changes, that would be a good place to start. :) The thread Digging part also required changes to thread ratings as well as both the plugins - though it was a borderline cheat - and obviously template changes are very significant in the appropriate places.
It was not an insignificant amount of work, though working with someone else's code and being the first to do the experimentation without knowing precisely what to do bumped up the development time quite a bit I expect.
wow you have done what I have thought about yeasterday - to use Groan hack for colaborative moderating - so that after x-groans it will either delet or hide the post
... now you have nice solution for this :-) it is pitty that it isnt available :-(
I have already asked author of the Post thank you hack whether he is not able to adopt this hack for DIGG purposes - I go check his thread again...
toolblast
11-16-2006, 03:44 AM
i have ZERO javascript skills. thus it's beyond my ability.
Aww, thats too bad :(
I have done this for our forum, it replicates the Digg rating system for not just posts but threads as well, with one or two minor improvements over the Digg system, probably most significantly that my version has three levels of user-definable settings (Digg may do this, I've never actually used their site). You can enable ratings and post visibility based on ratings, or set it so that ratings will show up but posts & threads will not be visibly affected but meaning that you can't place votes yourself, or disable the whole lot and no ratings or effects will appear at all. See here (http://doghouse.forumdog.com/announcement.php?f=43&a=4) for a not-quite-thorough explanation.
I can't release the code because:
a) It's customised code from a customised forum. Not really suitable for releasing as a mod for a default forum without some very major surgery.
b) It's nice to have a feature that others don't have (as far as I know) so I'd rather leave it to attract the curious and send a visitor or two our way. Feel free, by the way. ;)
c) It's based on someone else's code, named the Post Thanks and Post Groan hacks so a substantial amount of the work & credit lies with the author. So if you have the appropriate skills and you're willing to spend the time making the adaptions & changes, that would be a good place to start. :) The thread Digging part also required changes to thread ratings as well as both the plugins - though it was a borderline cheat - and obviously template changes are very significant in the appropriate places.
It was not an insignificant amount of work, though working with someone else's code and being the first to do the experimentation without knowing precisely what to do bumped up the development time quite a bit I expect.
Man, I really wish you would have released this, or that somebody would step up and recreate what you have. Did you code this yourself? If so, could I pay you to create a similar system for me? I have wanted this for such a long time as I think allowing co-moderation with the community individuals is a great idea and I really enjoy the feature on digg.
What makes this so hard to migrate over to someone else's board? Did you hack up the vbulletin php files to make it work?
ForumDog I am also badly interested in integrating this into my board. I would be happy to pay for such great feature .-) It is more than needed...
ForumDog
11-16-2006, 08:22 AM
What makes this so hard to migrate over to someone else's board? Did you hack up the vbulletin php files to make it work?
Yes, I didn't use the plugin system so it was all hand-coded via the Post Thanks/Groan plugins & default templates. I never separated it into it's own plugin.
I really would love to release it, honestly. But a starting forum needs all the help it can get and a unique feature is good help to have.
The only way I'd consider it is if there was a decent bit of money in doing so and a footer link/advertisement with the code for our forum and I can't in good conscience add a copyright of my own to what is mostly someone else's work. I'm not trying to be difficult, but I specifically did it as a unique promotion tool.
Really, the three reasons I listed above all still apply.
yoyoyoyo
12-02-2006, 04:38 PM
I would like to see this one released, also.
tazB.ca
12-04-2006, 09:54 PM
i would love to have that hack
i want it in the thread you can digg down users replies and if it gets enough diggs down it will be hidden (you can specify how many diggs down before hidden in your usercp) and also in forumdisplay itll show how many diggs each thread has
My dream hack =)
ForumDog
12-05-2006, 06:48 PM
Unfortunately, permission has been denied by the author of the plugin I based the modification on to release my version.
However, that doesn't mean I couldn't code it myself from scratch myself. I'm 95% sure that I will tackle a release version of a digg feature for vB when I get the time.
tazB.ca
12-05-2006, 07:18 PM
Unfortunately, permission has been denied by the author of the plugin I based the modification on to release my version.
However, that doesn't mean I couldn't code it myself from scratch myself. I'm 95% sure that I will tackle a release version of a digg feature for vB when I get the time.
your the greatest:D
ForumDog
01-04-2007, 09:50 AM
I've started work on this release now, no ETA. I'm not a member of Digg so I don't know exactly what features they have or how it works, but it'll include lots of nice features and options above and beyond just a post up or down and build on what the forumdog.com site modification has at the moment.
I'm afraid I can't guarantee it will be free since I'm repeatedly expanding the concept and it's taking a while, but we'll see.
toolblast
01-04-2007, 05:16 PM
I'm really excited for this. Hopefully you can get a release out within the next two weeks, as I'd really like to use this hack asap :)
PM me when it's ready, I'm willing to donate some money for it :)
I'm really excited for this. Hopefully you can get a release out within the next two weeks, as I'd really like to use this hack asap :)
PM me when it's ready, I'm willing to donate some money for it :)
SO AM I :-)
tazB.ca
01-10-2007, 02:21 AM
I've started work on this release now, no ETA. I'm not a member of Digg so I don't know exactly what features they have or how it works, but it'll include lots of nice features and options above and beyond just a post up or down and build on what the forumdog.com site modification has at the moment.
I'm afraid I can't guarantee it will be free since I'm repeatedly expanding the concept and it's taking a while, but we'll see.
I really hope it has the feature that posts that have been dugg down past -4 are hidden just like digg.com
I wouldn't mind donating $5-$20 :D
ForumDog
01-10-2007, 08:22 AM
I really hope it has the feature that posts that have been dugg down past -4 are hidden just like digg.com
That's exactly what it does (to threads as well as posts), read the link that I posted earlier. You specify yourself how many negative votes are required to trigger the hide. Additionally, I intend to include some slightly more more complex calculations based on hide thresholds.
AyeCapn
01-11-2007, 07:16 PM
bumpity bump.
I would pay for this mod without hesitation.
well this will be worth "any" money .-)
I have also suggestion for feature based on this script - common moderation (move thread), if the thread gets x-votes to be moved to x-forum it will be moved automatically.
ForumDog
01-13-2007, 10:10 AM
I'll read all suggestions posted here, no guarantee they'll be in the final product. I'm building on the basic Digg idea.
Speaking of which, I just saw this suggestion on Digg (http://digg.com/programming/A_Digg_feature_I_d_like_to_see) and it's one of the ideas I had myself and have actually already implemented into the mod. You will be able to choose between rating figures being displayed as a combined average or as separate positive and negative votes.
This thread has receieved +6 votes.
or
This thread has received +9 votes, -3 votes.
that sounds good, keep up your good work ForumDog .-), but as we know features requests might pilled up, the best would be to release the core of the add-on and then build up new features....
hehe I just cant wait to have this .-)
AyeCapn
01-13-2007, 12:49 PM
I'll read all suggestions posted here, no guarantee they'll be in the final product. I'm building on the basic Digg idea.
Speaking of which, I just saw this suggestion on Digg (http://digg.com/programming/A_Digg_feature_I_d_like_to_see) and it's one of the ideas I had myself and have actually already implemented into the mod. You will be able to choose between rating figures being displayed as a combined average or as separate positive and negative votes.
This thread has receieved +6 votes.
or
This thread has received +9 votes, -3 votes.Can I kiss you now, or would you prefer to wait until later?
:eek:
:o
:cool:
ForumDog
01-13-2007, 05:05 PM
that sounds good, keep up your good work ForumDog .-), but as we know features requests might pilled up, the best would be to release the core of the add-on and then build up new features....
hehe I just cant wait to have this .-)
Patience, padwan. :p These things take time.
A couple of other small previews:
I have rewritten what I've done to be as easily moddable and expandable as possible, so that hopefully all the knowledge you will need is some instructions and a bit of copying and pasting of the code in order to allow custom content of your own making to be rated using the Dogg method, just the same as the rest of the forum.
By this I mean I hope to construct the plugin in such a way that if you wanted Member Profiles, for instance, to be rated separately using the Dogg method all you'd have to do is read the instructions and spend 15 minutes with a bit of basic copying and pasting. All your AdminCP settings would automatically apply to your new rating area. That is what I am hoping for, no guarantees. :p
Secondly, you can't actually see it on the ForumDog website unless you're signed up as a member, but something else I did there was integrate the ratings system into the other Digg-like feature released on vBulletin.org: vBISpy (https://vborg.vbsupport.ru/showthread.php?t=125947), a screenshot of the ForumDog version can be seen here (https://vborg.vbsupport.ru/attachment.php?attachmentid=54535&d=1160563611). It's heavily redesigned but you get the idea. The ratings can be included in the realtime feed of new posts and bad threads/posts can be hidden in just the same way.
AyeCapn
01-13-2007, 05:11 PM
I love you!
toolblast
01-13-2007, 07:21 PM
Great, I can't wait till it comes out.
It looks like you already had the basic digg feature completed ages ago, I know you want to add all these great new things like expandability, flexibility, extra plugin features, etc. However, all I'd like to see atm is to have the digg functionality that you showed in your forum back when this thread began! :)
In other words, I would be thrilled just to see something basic released and wait till the more advanced version comes out in the future. Any ETA?
thenetbox
01-14-2007, 12:39 AM
Thank you very much. This is very much needed :)
ForumDog
01-14-2007, 08:51 AM
In other words, I would be thrilled just to see something basic released and wait till the more advanced version comes out in the future. Any ETA?
I know everyone would like it ASAP but it wasn't made as a plugin on forumdog.com so I have to start again from scratch anyway. It wouldn't make much difference. No ETA, sorry.
tazB.ca
01-21-2007, 05:30 AM
I don't really care about the forumdisplay I just want the showthread and to digg the posts :)
taheri6
01-21-2007, 10:14 PM
yeah me too
Question: will this not interfere with POST THANK YOU HACK?
ForumDog
01-22-2007, 08:31 AM
Question: will this not interfere with POST THANK YOU HACK?
No it won't. I've completely rewritten my modification, aside from a resemblence in a couple of places it's no longer an adaption of the Post Thanks mod. I'm not going to test it but you should be able to run both modifications together at the same time I suppose.
Great !!!
just for record - another feature request - "get new thread" for those post that are "off topic" within the thread.
Lets say 5votes will move the post into new thread (fifth user will have an option to choose relevant forum and thread title)
:-)
thenetbox
01-24-2007, 01:58 AM
Thanks a lot for working on this :D
btw Forumdog.com looks very nice!
toolblast
01-24-2007, 11:24 AM
This is going to be great, if you need anything just PM me! :D
EricaJoy
01-27-2007, 08:17 PM
Holy jeez! I am anxiously awaiting this release. If you make it a paid mod, please PM to let me know where to find it. :)
No it won't. I've completely rewritten my modification, aside from a resemblence in a couple of places it's no longer an adaption of the Post Thanks mod. I'm not going to test it but you should be able to run both modifications together at the same time I suppose.
Which hopefully means it will digg (burry) also "post thank you" and "groan" part of the post???
ForumDog
01-28-2007, 07:39 PM
Which hopefully means it will digg (burry) also "post thank you" and "groan" part of the post???
I don't understand what you mean, sorry? It will be be made to interact with other modifications, that would mean supporting other people's work which is always changing and is impossible.
But what it does is hide everything inside a post. So anything new you yourself added inside a post, yes that would also be hidden.
I don't understand what you mean, sorry? It will be be made to interact with other modifications, that would mean supporting other people's work which is always changing and is impossible.
But what it does is hide everything inside a post. So anything new you yourself added inside a post, yes that would also be hidden.
I think you got it ;)
Yes PostThankYou hack produce aditional line where all useres that pushed "Thankyou" button are displayed.
This part should be hidden along with post.
Thanks
EricaJoy
01-29-2007, 11:39 PM
Thanks for your efforts but that is not the feature we are all anxiously awaiting.
Thanks for your efforts but that is not the feature we are all anxiously awaiting.
Synergy is one good thing, but really that is not what we are after. Although would be nice to work together .-)
Caerydd
01-30-2007, 05:56 PM
Yeah, i'm hoping for this too!
magnus
02-02-2007, 01:16 PM
Unless I'm mistaken, it looks like someone was quicker on the draw with a release.
NuRatings is a system that enhances your vBulletin community by adding 'digg-like' rating functionality.
Users can rate other users, posts and threads by clicking on 'thumbs up/down' buttons next to each thread or post.
You can then show the top rated threads or users in your forum home page (or anywhere else). Users also have the ability of filtering the posts and threads they want to see based on their net rating.
Link (http://www.nuhit.com/products/nuratings.html)
ForumDog
02-02-2007, 03:31 PM
Looks good! Apart from the appearance, bleurgh. Guess I'll just have to do it better and/or cheaper. :) Ours does have a few advantages over that one.
Looks good! Apart from the appearance, bleurgh. Guess I'll just have to do it better and/or cheaper. :) Ours does have a few advantages over that one.
I believe so ForumDog. I am waiting for your release and I can tell that from what I saw yours was behaving better wit some features.
I have droped few suggestions there if you are interested in them go and see .-)
I also encourage you with release date announcement. We are still waiting :)
As I was writing you PM in December - GO Hurry Up to be first :(
Guess I'll just have to do it better and/or cheaper. :)
No cheaper! Please BETTER!!!
ForumDog any update? ETA?
we are quing here
Caerydd
02-05-2007, 06:10 PM
*cheers ForumDog on*
Caerydd
02-11-2007, 02:06 AM
Okay, I'm praying for this still. If you need a beta test, let me know. Otherwise I'll be making a drupal subsite to do this for my forum :(
ForumDog
02-11-2007, 08:58 AM
Drupal doesn't do this, does it? :confused:
I am terribly sorry for the delay, that's just the way it is I'm afraid. Paid work has to take priority. I still plan to release it but if I ever decide for whatever reason not to then I'll let everyone know so they're not waiting for nothing.
I will be sure to look to this thread for Beta testers when the time comes. ;)
Caerydd
02-11-2007, 02:45 PM
Well, it can. Not entirely integrated immediately into vBulletin, but it is very easy to make a digg like website with drupal. I was hoping for a vaguely easier route thought >>
I shall wait more patiently, as of course other things have priority over this :) Thank you for suggesting to do it all!
EricaJoy
02-11-2007, 08:22 PM
Drupal doesn't do this, does it? :confused:
I am terribly sorry for the delay, that's just the way it is I'm afraid. Paid work has to take priority. I still plan to release it but if I ever decide for whatever reason not to then I'll let everyone know so they're not waiting for nothing.
I will be sure to look to this thread for Beta testers when the time comes. ;)This could be paid too. I'm sure most of the people in the thread would pay you for development.
toolblast
02-11-2007, 08:28 PM
ya, people are willing to donate. I am too. We could ALL pitch in... and then you give it to whomever helps out.
Why don't you accept the offers and let us donate money to get this done? It has been a long time already, I would appreciate if you tell us if this is going to be a flop or not. As you said, everyone shouldn't have to continue to wait for nothing!
:)
Tnx
JamesX4334
02-12-2007, 02:22 PM
I can help out with this as I am developing an almost identical modification for phpBB.
toolblast
02-12-2007, 06:42 PM
I can help out with this as I am developing an almost identical modification for phpBB.
awesume.. how far along are you?
tazB.ca
02-14-2007, 07:36 PM
*Patiently waits*
toolblast
02-14-2007, 10:08 PM
My instincts are telling me:
a) this thread is dead
b) this mod is hopeless
I am also waiting here and for www.nuhit.com to release all option that we are waiting here for so long. If it happens this week I am turning my demand towards them.
magnus
02-15-2007, 07:01 PM
I am also waiting here and for www.nuhits.com to release all option that we are waiting here for so long. If it happens this week I am turning my demand towards them.
The site is http://www.nuhit.com/, for reference. :P
JamesX4334
02-15-2007, 08:21 PM
I'm fairly far along. I have contacted the person that is trying to create this mod and said that I can help but I have recieved no responce.
I'm not sure how far this guy is along but if I were to code a vBulletin version it would definatly take me a fairly long time.
tazB.ca
02-17-2007, 01:03 AM
The NuHits one isn't very esthetically pleasing
I hope this one actually looks good ..
magnus
02-17-2007, 12:06 PM
The NuHits one isn't very esthetically pleasing
I hope this one actually looks good ..
Templates are a wonderful thing. :)
tazB.ca
03-06-2007, 06:46 PM
These links might help
http://digg.com/programming/How_to_Create_Digg_Comment_Style_Sliding_DIVs_with _Javascript_and_CSS
http://wiki.script.aculo.us/scriptaculous/show/CombinationEffectsDemo
http://jquery.com/
+
http://digg.com/programming/Re_How_to_Create_Digg_Comment_Style_Sliding_DIVs_w ith_Javascript_and_CSS
toolblast
03-06-2007, 06:58 PM
Can you share what you have JamesX4334?
Thanks for the links taz!
Well I have joined nuhit customers. I do not mind paying few bugs for good work. It looks like ElfMage is willing to bring his add-on to really nice digg solution for vbulletin.
He has implemented all that we have expected and I am waiting for even more like example you can sort each forum by "best threads" in last 2 days, week, month and so on.
Please come to join the customer line to make other new feature happen ASAP :)
Every big board needs to give its users option to have quality content "at glance" and this is one solution to it.
I kind of wish that once there will be an option to gather also third party resources in digg like page on my board with NuRatings add-on along with top-rated threads page.
any updates on this? i am looking for a system like this for my forums...the nuhits one doesn't look very good to me...
magnus
03-09-2007, 01:27 AM
any updates on this? i am looking for a system like this for my forums...the nuhits one doesn't look very good to me...
vBulletin, by default, doesn't 'look very good' either. That's why it has templates. It can look however you want.
vBulletin, by default, doesn't 'look very good' either. That's why it has templates. It can look however you want.
yea i realize this i customized my vb if u actually took the time to check out my website in my sig
doesn't look good is bad vocabulary on my part...but yes i should take this back after looking further into nuhit it doesn't look so bad. think i might actually get it if there are no free alternatives.
****UPDATE
Nuhits is pretty great actually, nice mod!
4x4 Mecca
03-18-2007, 06:01 AM
I've also wanted this and will be watching this thread! Thanks!
tazB.ca
03-28-2007, 05:30 PM
any updates on whats happening with it
honestdave
03-28-2007, 08:27 PM
we put comment ratings on our forum.
more info > http://blog.honestforum.com/?p=47
we started with nuhit's system and then added some graphics...and moved the ratings to the top right corner.
EricaJoy
03-31-2007, 07:44 PM
nuhit's system is only $5 now so i'm going to give it a shot.
tazB.ca
04-01-2007, 06:00 AM
does nuhits have collapsing posts or anything like digg or is it just a rating system
nuhits have collapsing posts and even more.... submit form if you want to make digg like resources page on your forum; topratings for past two days, ten days and mont (you can actually filter it by forums id) and more features are developing ... and guys from nuhit are very keen to make their customers satisfied ...
So if more people are coming to subscribe to their service I guess more features can be developed with this top noch add-on.
xlguy
04-26-2007, 02:27 PM
Is it $5 or $25? :o
toolblast
04-26-2007, 02:36 PM
The site says $25... a bit pricey for me. I would like the feature, and I'd buy it for $5 or $10, but $25 is pushing it.
magnus
04-27-2007, 03:58 PM
<a href="https://vborg.vbsupport.ru/showthread.php?t=145075" target="_blank">User Powered Moderation System Lite (Post Management System)</a> by extremeTim.
xlguy
05-04-2007, 01:01 PM
That's for individual posts within a thread. I think what a lot of people want is a way of ranking threads in forumdisplay so they can be ranked by popularity - similar to the way you can list mods sorted by installs.
aceofspades
05-04-2007, 01:48 PM
I want to buy this rating sytem but the site is down. Anyone know how to contact him?
ElfMage
05-04-2007, 07:15 PM
Hi aceofspades, this morning we moved our site to a new server, which is now up and running.
aceofspades
05-05-2007, 07:30 AM
Any chance you could fix the db error on your forum so i can see the demo before i buy?
honestdave
10-10-2007, 05:16 PM
our ratings are a bit wonky you can still click + or - and it counts the vote, but they don't expand and show who voted anymore
ElfMage
10-11-2007, 04:43 PM
Hi Dave, I replied to your thread over at nuhit.com. Thanks.
I'm thinking of making this (actually pretty easy), are there still people interested in such a mod?
zmmmzz
11-22-2007, 10:03 PM
yeah!!! me please do it
xlguy
11-28-2007, 05:34 PM
go for it!!! :)
wisebread
01-08-2008, 08:07 AM
I'm thinking of making this (actually pretty easy), are there still people interested in such a mod?
Yes, very interested. Thanks!
https://vborg.vbsupport.ru/showthread.php?t=141453
honestdave
01-14-2008, 05:58 PM
would love to get the ratings system working again. it won't show who voted.
ericgtr
01-14-2008, 09:34 PM
FYI.. I've created a mod for this that allows users to digg a post and it will show exactly how many diggs it has gotten directly in the post https://vborg.vbsupport.ru/showthread.php?t=166385
This has been the most powerful tool for bringing traffic to my site that I have ever used.
HondaATC
05-23-2008, 09:08 PM
Man I need this for my forum so bad. The users are big on self moderation and it'd save myself an AWFUL lot of headache for THEM to decide whats worth staying on the forum and whats not. What could be better then 10,000 user moderators that can't screw stuff up? Its a perfect situation. The "User Powered Moderation System Lite (Post Management System)" link: https://vborg.vbsupport.ru/showthread.php?t=145075 Mod sounds to be exactly what I want, but it appears to be "retired" now and I don't have any way to download the package. Someone throw me a bone here eh?
iogames
05-23-2008, 09:23 PM
Nonono... this is better
https://vborg.vbsupport.ru/showthread.php?t=173609
HondaATC
05-23-2008, 09:27 PM
....Thats nothing at all like what I'm looking for. Thanks for the link though.
I'd like to see the old User Powered Moderation System brought back for vB ver 4.+ too :)
Here's the old one:
https://vborg.vbsupport.ru/showthread.php?t=145075
Thanx!
Pro-eSports.com
02-19-2010, 12:20 AM
Is there a simple "Thumbs Up & Thumbs Down" mod which just shows the amount of thumbs up and downs in each post?
vBulletin® v3.8.12 by vBS, Copyright ©2000-2024, vBulletin Solutions Inc.