Show Your Support
Replace Everything In Your showthread_quickreply template with the following code. // -------------QuickReply Revamp By Wolfe-------------------------------- <script language="javascript"> <!-- var postmaxchars = $postmaxchars; function validate(theform) { if (theform.message.value=="") { alert("Please complete the message field."); return false; } if (postmaxchars != 0) { if (theform.message.value.length > $postmaxchars) { alert("Your message is too long.\n\nReduce your message to $postmaxchars characters.\nIt is currently "+theform.message.value.length+" characters long."); return false; } else { return true; } } else { return true; } } function checklength(theform) { if (postmaxchars != 0) { message = "\nThe maximum permitted length is $postmaxchars characters."; } else { message = ""; } alert("Your message is "+theform.message.value.length+" characters long."+message); } //--> </script> <form enctype="multipart/form-data" action="newreply.php" name="vbform" method="post"> <input type="hidden" name="s" value="$session[sessionhash]"> <input type="hidden" name="action" value="postreply"> <input type="hidden" name="threadid" value="$threadid"> <table cellpadding="0" cellspacing="0" border="0" bgcolor="#000000" width="100%" align="center"><tr><td><table cellpadding="4" cellspacing="1" border="0" width="100%"><tr><td width="175" bgcolor="{firstaltcolor}" valign="top" nowrap><b>QUICK REPLY:</b><br><normalfont>Please note that this is only a fast text reply.<br><br>For replies including images, fonts, colours, smileys etc plz use the "post reply" button below.<br><br><input type="submit" class="bginput" value="Submit quick reply" accesskey="s" tabindex="3"></normalfont></td><td width="45%" bgcolor="{firstaltcolor}"> <textarea name="message" rows="10" cols="$textareacols" wrap="virtual" tabindex="1"></textarea><br><smallfont><a href="java script:checklength(document.vbform);">[check message length]</a></smallfont></td><td width="*" bgcolor="{firstaltcolor}" valign="top"><smallfont><b>OPTIONS:</b></font><br><smallfont><input type="checkbox" name="parseurl" value="yes"> <b>Automatically parse URLs: </b>Automatically adds <a href="http:// and " target="_blank"> and </a> around internet addresses.<br><input type="checkbox" name="email" value="yes" CHECKED> <b>Email Notification: </b>Emails sent to you whenever someone replies. Only registered users are eligible.<br><input type="checkbox" name="disablesmilies" value="yes" > <b>Disable Smilies in This Post:</b> <br><input type="checkbox" name="signature" value="yes" CHECKED> <b>Show Signature: </b>Include your profile signature. Only registered users may have signatures.<br><br><br><b><i>Quick Reply Design By Wolfe</i></b></select></smallfont></td></tr></table></font></td></tr></tr></table></td></tr></form> // -------------QuickReply Revamp By Wolfe--------------------------------