I don't know about you, but I am sick of opening a thread and seeing its a repost or just stupid. I think a good way to solve this is to make it so when people comment, they have to rate as well. That way, before me or others open a thread they can sord of guess what they are going to see.
Hope you like my suggestion.
__________________
Donate to remove ads, get your "DONATOR title, and get access to the MMOwned community's elite Shoutbawx.
find the code for it and we can talk- however our current rate system works fine imo
PS no need for other replies below this one please unless its the OP
__________________
[Only registered and activated users can see links. ] <|> [Only registered and activated users can see links. ]
You can rate threads already.
Just rated this 3 stars. [Only registered and activated users can see links. ]
Look at the stars beside your threadname.
I understand that I can rate -- it's just that no one does. It would make it a lot better, if they made it so you had to rate.. to comment. I find threads that are 3 pages long, but all teh comments say ''Repost'' or ''stupid''.
I don't know if it's possible, but it would be nice.
It's not too hard, you could do it with a bit of javascript. I tried to make a basic script that will make a messagebox if the user has not voted before trying to post.
I don't have vbulletin, so I don't know the name of any of the included files or headers.
I also don't know enough about javascript, but by looking through, I think this is what you have to do.
In any file that gets included forum-wide add
var rated=0;
In [Only registered and activated users can see links. ], just add "rated=1;" in the beginning.
In wherever the posting header is, there is this part
Code:
// initialize quick reply
qr_init();
Change it to
Code:
if(rated)
{
qr_init();
}
else
{
alert("Please rate the thread before posting");
}
and you'll probably be done.
You'd have to rate every time that you want to post and you have reloaded the page, but it won't affect the overall rating as you can only rate it once per user.
There are also alternative rating systems, such as [Only registered and activated users can see links. ] (not that they come with the suggested feature) but installing them and modifying them similarly may work out better than this.
Another suggestion from me would to not make it require a rating, but simply remind of it, similar to the popup after reputation is given. Although, I think requiring a rating could greatly improve the sorting and ranking of threads, more than this, if you don't like the idea please consider the second one.