Announcement

Collapse
No announcement yet.

Drop down list in checkout?

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    #16
    Hi Angie,

    That is what i have done, people can type in what they like. Works well when people use it, we keep it as opional.

    Our lists have become pretty long, wondering if it is possible to represent this as a radio button format, or check boxes.

    Any suggestions would be appreciated, kind regards Mash
    Mash

    Comment


      #17
      The answer to that is a big yes. All you need to do is edit the code of the drop-down list in Act_Order02.html so that rather than looking like this:

      Code:
      <SELECT NAME="GENERALHOWFOUND">
      <OPTION SELECTED>Please select:
      <OPTION VALUE="Search Engine">Search Engine
      <OPTION VALUE="Magazine">Magazine
      <OPTION VALUE="Other">Other
      </SELECT>
      it looks like this:

      Code:
      <input type="radio" name="GENERALHOWFOUND" value="Search Engine" />Search Engine<br />
      <input type="radio" name="GENERALHOWFOUND" value="Magazine" />Magazine<br />
      <input type="radio" name="GENERALHOWFOUND" value="Other" />Other<br />

      Comment


        #18
        Thank you I will try that after my holiday, cheers Mash
        Mash

        Comment

        Working...
        X