Message Text |
I would like to add a few more fields to the suggest.php form.
SO I added a field and got the variable for it. I chose a link field. I want to use it for entering an address. SO the variable is {LINKADDRESS}.
I entered that variale in the display links template under the titleand added this html under the
title of the suggest template.:
<tr>
<td class="labelscolumn"><span class="labels">Address:</span></td>
<td class="optionscolumn"><input type="text" name="address" size="{STANDARDSIZE}" value="{LINKADDRESS}"></td>
</tr>
This appears in the add new link form but it does not show in the displaylinks page of category. Im concerned that it might be the name="address" part of that code. I think it has to be defined somewhere. Am I missing something else or is that causing the problem?
I used the title code as a model. |