TCM
11-11-2005, 10:00 PM
As requested in this thread.
This addition disables the "I Agree" checkbox on the rules page during registration until a specifed amount of time has elapsed. If it isn't obvious, this idea is that the users can't just click through right away, so they're more likely to actually read the rules.
IN TEMPLATE register_rules:
FIND
<div><label for="cb_rules_agree"><input type="checkbox" name="agree" id="cb_rules_agree" value="1" /><strong><phrase 1="$vboptions[bbtitle]">$vbphrase[read_agree_abide_by_rules]</phrase></strong></label></div>
ADD AFTER
<script type="text/javascript">
var agreebox = document.getElementById('cb_rules_agree');
agreebox.disabled = true;
setTimeout("agreebox.disabled = false;", 10000);
</script>
Replacing 10000 with the number of miliseconds you want it to wait before enabling the checkbox.
If you use this, please press install (https://vborg.vbsupport.ru/vborg_miscactions.php?do=installhack&threadid=100617). :)
This addition disables the "I Agree" checkbox on the rules page during registration until a specifed amount of time has elapsed. If it isn't obvious, this idea is that the users can't just click through right away, so they're more likely to actually read the rules.
IN TEMPLATE register_rules:
FIND
<div><label for="cb_rules_agree"><input type="checkbox" name="agree" id="cb_rules_agree" value="1" /><strong><phrase 1="$vboptions[bbtitle]">$vbphrase[read_agree_abide_by_rules]</phrase></strong></label></div>
ADD AFTER
<script type="text/javascript">
var agreebox = document.getElementById('cb_rules_agree');
agreebox.disabled = true;
setTimeout("agreebox.disabled = false;", 10000);
</script>
Replacing 10000 with the number of miliseconds you want it to wait before enabling the checkbox.
If you use this, please press install (https://vborg.vbsupport.ru/vborg_miscactions.php?do=installhack&threadid=100617). :)