PDA

View Full Version : how to force users to vote during reply


firenuts
11-13-2002, 09:20 PM
is it possible to force users to vote while they reply to a thread? Is there such hack for the job?

Logician
11-14-2002, 08:51 AM
not tested, give it a try:

edit newreply.php, find:


if ($preview) {


before that add this:


// Force registered members to rate threads when replying hack
if ($bbuserinfo['usergroupid'] == 2 AND $foruminfo['allowratings'] == 1 AND $permissions['canthreadrate'] AND (!$rating OR $rating < 0 or $rating > 6))
{
eval("standarderror(\"".gettemplate("error_mustrate")."\");");
exit;
}
// Force registered members to rate threads when replying hack


create a new template named "error_mustrate". This will be displayed when someone sends a reply without a rate..

btw. hack will apply only registered users (usergroupid=2) replies, other usergroups are exempt from this restriction..

enjoy..

firenuts
11-14-2002, 09:17 AM
COOL! Thanks. is this hack for POLL or THREAD RATING?

thanks again.

Logician
11-14-2002, 09:37 AM
thread rating it is

Bison
11-15-2002, 03:20 PM
How do you get this to work with polls?