The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#1
|
|||
|
|||
Has this been ported for the 3.xx Version
<a href="https://vborg.vbsupport.ru/showthread.php?t=28316&page=1&pp=15" target="_blank">Click this to see what im talking about please let me know.</a>
|
#2
|
||||
|
||||
well its just different template and one different code.
open "register_rules" template. find: Code:
<form action="register.php" method="post"> Code:
<form action="register.php" method="post" name=register> find: Code:
<input type="submit" class="button" value="$vbphrase[register]" accesskey="s" /> Code:
<input type="submit" name="Submit" class="button" value="$vbphrase[register]" accesskey="s" /> $footer after add: Code:
<script> secs = 10; // Number of secs to delay wait = secs * 1000; document.forms.register.Submit.disabled =true; for(i=1;i<=(wait/1000);i++) { window.setTimeout("doUpdate(" + i + ")", i * 1000); } window.setTimeout("Timer()", wait); function doUpdate(num) { if(num == (wait/1000)) { document.forms.register.Submit.value = "Agree"; } else { wut = (wait/1000)-num; document.forms.register.Submit.value = "Agree (" + wut + ")"; } } function Timer() { document.forms.register.Submit.disabled =false; } </script> |
Thread Tools | |
Display Modes | |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|