I need to add two text boxes that a customer can use to enter their engraving requests. I've hacked together some code from the Shopping Cart Page (row two in the code snippet below). Problem is I need this on the More Info page and I need two text areas.
I know this code won't work as it is, but am I going in the right direction? I'm guessing that "freeopt" is a variable. Bottom line, I need two text entry boxes on my More Info pages and the entered must be passed onto the Shopping Cart and to the Checkout Pages.
Any help would be greatly appreciated.
<tr>
<td align="left"><select name="16984:finopt:5" size="1">
<option value="Choose Font (2nd line):">Choose Font (2nd line):</option>
................
<option value="Prestige">Prestige</option>
</select></td>
</tr>
<tr>
<td align="left"><input type="hidden" name="1:finoptnum" value="6">Text (15 char. max. per line)<br>
<textarea wrap="physical" name="1:freeopt" rows="1" cols="20"></textarea>
</td>
</tr>