Adding Field

Discussion in 'Templates customization' started by Guest_duny, Dec 5, 2003.

  1. Guest_duny

    Guest_duny Guest

    I am using amember free. I want to add a drop down list to the option street. Basically I am uinsing street for something else. So is there a way to use a drop down with this. At the bottom of the the user form i see alot of other fileds bu i dont see the place where to add the array and all of that. I know it can happen to the pro version. But i am not adding a field i am using a preset one.

    Here is what i have

    <tr>
    <th width=40%><font size="2">Type Of Phone</font></th>
    {assign var=country value=$u.street}
    <td><select name="{$u.street|escape}" size="1">
    {html_options options=$u.options selected=$u.street}
    </select></td>
    </tr>
  2. alex-adm

    alex-adm Guest

    <tr>
    <th width=40%><font size="2">Type Of Phone</font></th>
    <td><select name="street" size="1">
    <option>Option-1
    <option>Option-2
    </select></td>
    </tr>

Share This Page