reteep
11-07-2004, 10:00 PM
Add a "Has this already been asked?" Button
Adds a button besides the title when creating a new thread which executes a search query of the filled in words. This helps a bit preventing new users post questions which has already been asked in the past.
Author: stormblast - http://www.musiker-board.de/vb
Installation Instructions:
# Open the Admin Control Panel > Styles & Templates > Style Manager > New Posting Template Group > newthread template, and add at the top of it:
<script language="javascript">
<!--
function checktitle(theform) {
if(theform.subject.value==""){
alert("Please enter a topic in the subject field.");
return false; } else {
window.open('search.php?do=process&query='+document.vbform.subject.value+'','javascri pt_1','toolbar=no,location=no,directories=no,statu s=no,menubar=no,scrollbars=yes,resizable=yes,copyh istory=no,width=700,height=400'); }
}
//-->
</script>
# now find this code inside newthread:
<td><input type="text" class="bginput" name="subject" value="$subject" size="40" maxlength="85" tabindex="1" /></td>
<td> </td>
# and replace with:
<td><input type="text" class="bginput" name="subject" value="$subject" size="40" maxlength="85" tabindex="1" /></td>
<td><input type="button" class="button" value="Has this already been asked?" onClick="checktitle(vbform);"></td>
# Save the newthread template and you're done!
Enjoy! :p
Adds a button besides the title when creating a new thread which executes a search query of the filled in words. This helps a bit preventing new users post questions which has already been asked in the past.
Author: stormblast - http://www.musiker-board.de/vb
Installation Instructions:
# Open the Admin Control Panel > Styles & Templates > Style Manager > New Posting Template Group > newthread template, and add at the top of it:
<script language="javascript">
<!--
function checktitle(theform) {
if(theform.subject.value==""){
alert("Please enter a topic in the subject field.");
return false; } else {
window.open('search.php?do=process&query='+document.vbform.subject.value+'','javascri pt_1','toolbar=no,location=no,directories=no,statu s=no,menubar=no,scrollbars=yes,resizable=yes,copyh istory=no,width=700,height=400'); }
}
//-->
</script>
# now find this code inside newthread:
<td><input type="text" class="bginput" name="subject" value="$subject" size="40" maxlength="85" tabindex="1" /></td>
<td> </td>
# and replace with:
<td><input type="text" class="bginput" name="subject" value="$subject" size="40" maxlength="85" tabindex="1" /></td>
<td><input type="button" class="button" value="Has this already been asked?" onClick="checktitle(vbform);"></td>
# Save the newthread template and you're done!
Enjoy! :p