Quote:
Originally Posted by PinkDaisy
Okay. So if we upgrade, how do we redo the template edits from the past ones? woudl they be okay to leave them?
|
It should be fine but here's upgrade instructions.
** UPGRADE from previous Versions to v2.0 **
1. re-upload all files (they have changed)
2. re-upload product file (it has changed)
3. apply following template edits
Open template: newreply
find:
PHP Code:
<td><input type="text" class="bginput" name="title" value="$title" size="50" maxlength="$vboptions[titlemaxchars]" tabindex="1" title="$vbphrase[optional]" /><br /><br />$cannedreplies</td>
REPLACE:
PHP Code:
<td><input type="text" class="bginput" name="title" value="$title" size="50" maxlength="$vboptions[titlemaxchars]" tabindex="1" title="$vbphrase[optional]" /></td>
**OPTIONAL EDITS TO USE CANNED REPLIES IN NEWTHREAD**
Open template: newthread
find:
PHP Code:
<input type="text" class="bginput" name="subject" value="$subject" size="40" maxlength="$vboptions[titlemaxchars]" tabindex="1" /><br /><br />$cannedreplies
REPLACE:
PHP Code:
<input type="text" class="bginput" name="subject" value="$subject" size="40" maxlength="$vboptions[titlemaxchars]" tabindex="1" />
**OPTIONAL EDITS TO USE CANNED REPLIES IN INFRACTIONS**
Open template: userinfraction
find:
PHP Code:
<td><input type="text" class="bginput" name="note" value="$note" size="50" tabindex="1" /><br /><br />$cannedreplies</td>
REPLACE:
PHP Code:
<td><input type="text" class="bginput" name="note" value="$note" size="50" tabindex="1" /></td>