Announcement

Collapse
No announcement yet.

Drop down list in checkout?

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

    Drop down list in checkout?

    OK, I have an easy question for your more experienced folk (grovel grovel )

    Firstly, I'd like to put a drop down box in one of my user defined fields at the checkout. User Definable one (after delivery details, before payment) currently asks "How did you find our site?"
    I'd like it to present the customer with a drop-down list of options and, if they select "other" I'd ideally like them to be able to type in details for this.
    Did that make sense? So they can select a source from the list or select "other" which will them prompt them to type where exactly (if, indeed, they know!!)
    Is this possible?
    I do have a drop-down list at Budget Bumps but I'm using V5 (a BB) so don't want to just attempt to pick out the right html when I have no clue about it really!
    Thanks in advance!
    Tracey
    Tracey

    #2
    I'd be interested in this too...
    John

    Comment


      #3
      Actually my (Actinic's default) Act_Order02.html template contains the following commented out lines:
      Code:
      	<!-- Use the HTML below to have a drop-down for the 'How did you find our site?' -->
      		<!--
      		<TR>
      		  <td bgcolor="NETQUOTEVAR:CHECKOUTBG"><FONT FACE="ARIAL" SIZE="2">NETQUOTEVAR:GENERALPROMPT000</FONT></TD>
      		  <td bgcolor="NETQUOTEVAR:CHECKOUTBG"><FONT FACE="ARIAL" SIZE="2">
      		   <SELECT NAME="GENERALHOWFOUND"> <OPTION SELECTED>Please select:
      		   	<OPTION VALUE="Search Engine">Search Engine
      		   	<OPTION VALUE="Magazine">Magazine
      		   	<OPTION VALUE="Other">Other
      			</SELECT>
      		  </FONT></TD>
      		 </TR>
       	//-->
      Is this what you would like to achieve?

      Regards,
      Zoltan
      Actinic Software
      www.actinic.co.uk

      Comment


        #4
        hmmmm

        Thanks but I think I've deleted something I shouldn't have coz it displays wrong now.

        If you see attached, how do I get the line above the drop down list not to appear?
        If I remove user definable 1 from the general tab in "display, text" Phase 4 Id 0 it doesn't show that line OR the drop down.
        I've tried it checked and unchecked, is it something I've missed in the html (Act_Order_02), something I've deleted?
        I'll paste a section that I've altered.

        <td bgcolor="NETQUOTEVAR:CHECKOUTBG">NETQUOTEVAR:GENERALPROMPT000</td>
        <td bgcolor="NETQUOTEVAR:CHECKOUTBG">
        <input type="TEXT" name="GENERALHOWFOUND" size="40" maxlength="255" value="NETQUOTEVAR:GENERALHOWFOUND">
        </td>
        </tr>
        <!-- Use the HTML below to have a drop-down for the 'How did you find our site?' -->

        <TR>
        <td bgcolor="NETQUOTEVAR:CHECKOUTBG"><FONT FACE="ARIAL" SIZE="2">NETQUOTEVAR:GENERALPROMPT000</FONT></TD>
        <td bgcolor="NETQUOTEVAR:CHECKOUTBG"><FONT FACE="ARIAL" SIZE="2">
        <SELECT NAME="GENERALHOWFOUND"> <OPTION SELECTED>Please select:
        <option>Previous Customer</option>
        <option>Budget Bumps Customer</option>
        <option>Personal Recommendation</option>
        <option>Ask Alix Website</option>
        <option>MothersBliss.com Website</option>
        <option>BritishMailOrder.com Website</option>
        <option>Yahoo Directory</option>
        <option>Google Ad</option>
        <option>Other Search engine</option>
        <option>Online Shopping Directory</option>
        <option>Mother & Baby Magazine Advert</option>
        <option>Mother & Baby Magazine Article</option>
        <option>Pregnancy & Birth Magazine Advert</option>
        <option>Pregnancy Magazine Advert</option>
        <option>Pregnancy Magazine Article</option>
        <option>Pregnancy & Birth Magazine Article</option>
        <option>Junior Magazine Article</option>
        <option>UKParents Website Link</option>
        <option>BabySoon Website Link</option>
        <option>Yahoo Auctions</option>
        <option>Seen a Budget Bumps Flyer</option>
        <option>Other Website Link</option>
        <option>Can't Remember</option>
        </SELECT>
        </FONT></TD>
        </TR>

        NETQUOTEDEL:GENERALPROMPT000

        It all works ,but still displays the line above (the user definable 1, Design, Text, Phase 4, Id 0) also.

        I'll be something I've done, I'm sure. Can anyone see it?
        Thanks,
        Tracey
        Tracey

        Comment


          #5
          ooh..scrap that last post!

          Just figured it out (trial and error and much saving to notepad, just in case..lol)
          Am not as stupid as I look
          Thanks again
          Tracey
          Tracey

          Comment


            #6
            Hi Tracey,

            I have been asked to add a similar thing with a drop down list "How did you find our site?" question.

            You said that you had a problem, and then you fixed it, if you can remember how did you do it?

            You wanted "Other" and allow people to type in, was this possible or not worth trying?

            Can you make the filling out this field a required field?

            Thanks M
            Mash

            Comment


              #7
              Hi Mash

              Simply open your "Act_Order02.html" template and you will have the following:

              HTML Code:
              <!-- Use the HTML below to have a drop-down for the 'How did you find our site?' -->
              		<!--
              		<TR>
              		  <td bgcolor="NETQUOTEVAR:CHECKOUTBG"><FONT FACE="ARIAL" SIZE="2">NETQUOTEVAR:GENERALPROMPT000</FONT></TD>
              		  <td bgcolor="NETQUOTEVAR:CHECKOUTBG"><FONT FACE="ARIAL" SIZE="2">
              		   <SELECT NAME="GENERALHOWFOUND"> <OPTION SELECTED>Please select:
              		   	<OPTION VALUE="Search Engine">Search Engine
              		   	<OPTION VALUE="Magazine">Magazine
              		   	<OPTION VALUE="Other">Other
              			</SELECT>
              		  </FONT></TD>
              		 </TR>
               	//-->
              Simply uncomment this line and rename the options to what you want. If you want to add in more options into the dropdown list, simply insert the line:

              Code:
              <OPTION VALUE="More details">More Details
              .

              You can make this a required field, by going into "Design | Text | Web Site (Cont)" and put a tick for "User Definable 1"

              Kind Regards
              Nadeem Rasool
              SellerDeck Development

              Comment


                #8
                That is superb, I did get to the list bit and worked that but now I have completed it.

                The only problem is that text font/size seam to be different between each question under General Information, where can I standardize this.

                Thanks though, as I said superb. Mash
                Mash

                Comment


                  #9
                  Hi Mash,

                  You should see the <FONT FACE="ARIAL"> tags on these, try changing these to <span class="actregular"> or whatever you would like them to be.

                  Kind Regards
                  Nadeem Rasool
                  SellerDeck Development

                  Comment


                    #10
                    That has worked a treat thank you.
                    Mash

                    Comment


                      #11
                      Just as a side note to this...

                      Originally posted by Nadeem
                      Hi Mash

                      Simply open your "Act_Order02.html" template and you will have the following:

                      HTML Code:
                      <!-- Use the HTML below to have a drop-down for the 'How did you find our site?' -->
                      		<!--
                      		<TR>
                      		  <td bgcolor="NETQUOTEVAR:CHECKOUTBG"><FONT FACE="ARIAL" SIZE="2">NETQUOTEVAR:GENERALPROMPT000</FONT></TD>
                      		  <td bgcolor="NETQUOTEVAR:CHECKOUTBG"><FONT FACE="ARIAL" SIZE="2">
                      		   <SELECT NAME="GENERALHOWFOUND"> <OPTION SELECTED>Please select:
                      		   	<OPTION VALUE="Search Engine">Search Engine
                      		   	<OPTION VALUE="Magazine">Magazine
                      		   	<OPTION VALUE="Other">Other
                      			</SELECT>
                      		  </FONT></TD>
                      		 </TR>
                       	//-->
                      Simply uncomment this line and rename the options to what you want. If you want to add in more options into the dropdown list, simply insert the line:

                      Code:
                      <OPTION VALUE="More details">More Details
                      .

                      You can make this a required field, by going into "Design | Text | Web Site (Cont)" and put a tick for "User Definable 1"

                      Just for future reference: To make the drop down a required field you also need to remove the line: '<OPTION SELECTED>Please select:' and replace with <OPTION>. If you do not replace this then the option of Please Select will be used as the required field text when an option has not been selected by the user.

                      The 'User Definable 1' mentioned above is (Phase: 4 ID: 0). To change the 'General Information' heading go to (Phase: -1 ID: 151)

                      Comment


                        #12
                        not sure if to add on here or start a new thread

                        i have done the above but i still have 2 problems, i now have 2 how did you find our sites on the page one with a box to fill in and the other with the pull down list
                        the one with the pull down list is still in a different font.

                        thanks
                        damien
                        Damien
                        www.funkybumpmaternity.com

                        Comment


                          #13
                          Remove the face="Arial" from the code shown above and the box will inherit the default font you are using. Just realised I am basically repeating what Nadeem said in post #9

                          Comment out the code for the standard text box 'how did you find.." with <!-- including a space after the second hyphen before the code and --> including a space before the first hyphen.
                          Bill
                          www.egyptianwonders.co.uk
                          Text directoryWorldwide Actinic(TM) shops
                          BC Ness Solutions Support services, custom software
                          Registered Microsoft™ Partner (ISV)
                          VoIP UK: 0131 208 0605
                          Located: Alexandria, EGYPT

                          Comment


                            #14
                            Hi,

                            I have added a dropdown list of options to my checkout, but i want to add a type box so that the user can add in a description if they chose 'other' from the drop down.

                            Is there a way to do this?

                            Cheers
                            Angie

                            Comment


                              #15
                              Hi Angela

                              Are you using the 'User Definable 3' field for anything? You can check this by going to 'Design | Text | Web Site (cont) | General Information'. You can use this field as an 'Other' field.

                              Comment

                              Working...
                              X