Announcement

Collapse
No announcement yet.

Mandatory questions

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

    Mandatory questions

    In one of my V7 sites I had a question with a drop down list to select the answer from. I can't remember how I did it now, you can see it HERE.

    I want to put a similar facility in my new V8 version of the site and make it mandatory. I have looked at the General Information questions you can put in Checkout Page 3 but can't see how to create the list with that.

    Bob
    Supporting the environment. This post uses 100% recycled electrons.
    Bob Isaac
    Director/Web Admin
    Volvo Owners Club Ltd

    Actinic MS Business Version 8.5.2

    #2
    Looks like its an attribute with choices to me.

    Comment


      #3
      Doh!!! Yes, how did I miss that. Anyone know of a way to create something like this and make it mandatory, such as modifying the General Info box in the checkout page.

      Thanks

      Bob
      Supporting the environment. This post uses 100% recycled electrons.
      Bob Isaac
      Director/Web Admin
      Volvo Owners Club Ltd

      Actinic MS Business Version 8.5.2

      Comment


        #4
        In order to edit the field in v8, you need to edit the layout in the library called 'General User Definable 2'. You can use the right-click and 'Find' command in the library to go straight to this layout.

        Replace
        Code:
        <input type="text" name="GENERALWHYBUY" size="40" maxlength="255" value="<Actinic:Variable Name="GeneralWhyBuy"/>" />
        with something like...
        Code:
              <select name="GENERALWHYBUY">
        			<option value="" selected="selected">Select an option</option>
        			<option value="first-option">first option</option>
        			...
        			...
        		</select>

        Comment


          #5
          Thanks Chris, I will play around with that.

          Bob
          Supporting the environment. This post uses 100% recycled electrons.
          Bob Isaac
          Director/Web Admin
          Volvo Owners Club Ltd

          Actinic MS Business Version 8.5.2

          Comment


            #6
            The drop down list appears and can be made mandatory, but the selected information does not appear in the email invoice.

            Bob
            Supporting the environment. This post uses 100% recycled electrons.
            Bob Isaac
            Director/Web Admin
            Volvo Owners Club Ltd

            Actinic MS Business Version 8.5.2

            Comment


              #7
              but the selected information does not appear in the email invoice.
              I think it will show in the order details | Misc tab. You can run a report to get the info

              Comment


                #8
                You are correct, thanks.

                Bob
                Supporting the environment. This post uses 100% recycled electrons.
                Bob Isaac
                Director/Web Admin
                Volvo Owners Club Ltd

                Actinic MS Business Version 8.5.2

                Comment

                Working...
                X