timetunnel
11-14-2005, 10:00 PM
Hello.
This is to make the 'title' field UNEDITABLE in new replies so only the title from the thread is used.
In the 'newreply' template,
Find this code:
<td class="smallfont" colspan="3">$vbphrase[title]: on the same line or below it, add e.g.
<font class="smallfont">(uneditable since replying)</font>
NEXT, scroll a few lines down and...
Find this code:
<input type="text" class="bginput" name="title" value="$title" size="50" maxlength="85" tabindex="1" title="$vbphrase[optional]" /> and
Modify to:
<input type="text" class="bginput_title" name="title" value="$title" size="50" maxlength="85" tabindex="1" title="$vbphrase[optional]" readonly="readonly" /> where,
class="bginput_title" can be changed to whatever class of attributes you want to have for the BACKGROUND COLOR of the input text field.
Since the 'readonly' attribute is used, the data for this field is still sent to the server.
Have fun!
EDIT: CHANGED in 'Modify to:' from 'readonly' to readonly="readonly" for compliance. The original version works, but should be compliant... :rolleyes:
This is to make the 'title' field UNEDITABLE in new replies so only the title from the thread is used.
In the 'newreply' template,
Find this code:
<td class="smallfont" colspan="3">$vbphrase[title]: on the same line or below it, add e.g.
<font class="smallfont">(uneditable since replying)</font>
NEXT, scroll a few lines down and...
Find this code:
<input type="text" class="bginput" name="title" value="$title" size="50" maxlength="85" tabindex="1" title="$vbphrase[optional]" /> and
Modify to:
<input type="text" class="bginput_title" name="title" value="$title" size="50" maxlength="85" tabindex="1" title="$vbphrase[optional]" readonly="readonly" /> where,
class="bginput_title" can be changed to whatever class of attributes you want to have for the BACKGROUND COLOR of the input text field.
Since the 'readonly' attribute is used, the data for this field is still sent to the server.
Have fun!
EDIT: CHANGED in 'Modify to:' from 'readonly' to readonly="readonly" for compliance. The original version works, but should be compliant... :rolleyes: