Announcement

Collapse
No announcement yet.

multiple choice selection

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

    multiple choice selection

    Hi everyone

    I am using Clean Layout #4 and have Product on Quantity Page.
    www.agiftislove.com

    What I need is (and I'm not quite sure Actinic would call it a component, atrribute or choice or something else). I have searched the forum under numerous keywords and haven't been able to locate anything.

    You know how you can create a drop down list for choices and the customer can select one (1) choice. Well, I am trying to make something like that, but the customer needs to be able to select multiple choices.

    I really don't want a long list of checkboxes. Is there anyway this can be done?

    Thanks,
    Bonnie
    www.bonnies-gift-shop.com
    Unique Gifts & Home Decor
    Retail/Wholesale/Drop Shipping
    www.bonniesgifts.com
    Gift Baskets Gift Ideas Unique Gifts
    Retail/Drop Shipping

    #2
    Hi there

    I'm afraid checkboxes are the only way you can select multiple choices. Using dropdown list and radio button, you can only select one choice, unless you had two sets of dropdown list, then you could have client selecting one choice on one list and another choice on another list

    Kind Regards
    Nadeem Rasool
    SellerDeck Development

    Comment


      #3
      You can squeeze these checkboxes up a bit so there's not so much space between them.

      If you replace Act_variantCheckBox.html with
      Code:
      <!-- VariantCheckBox HTML begin -->
      <!-- This template is used for a product variant checkbox. -->
      
      <SPAN CLASS="actxsmall"><INPUT TYPE=CHECKBOX NAME="NETQUOTEVAR:CHECKBOXNAME" NETQUOTEVAR:CHECKSTATE>NETQUOTEVAR:CHECKBOXLABEL
      NETQUOTEVAR:PRICEEXPLANATION
      </SPAN>
      
      <!-- This template is used for a product variant checkbox. -->
      <!-- VariantCheckBox HTML end -->
      Then there will be no extra lines between component checkboxes.

      Also if you go to Design / Text / Phase -1, ID 2045 and delete the <BR> (or replace it with "&amp;nbsp;" if you want some spacing) , then all components will appear on the same line.

      Norman
      Norman - www.drillpine.biz
      Edinburgh, U K / Bitez, Turkey

      Comment


        #4
        And here's a way to lay them out like this:-

        Code:
        Name1  Name2  Name3
         [ ]    [ ]    [ ]
        Replace Act_VariantCheckBox.html with
        Code:
        <!-- VariantCheckBox HTML begin -->
        <!-- This template is used for a product variant checkbox. -->
        
        <table border=0 align=left>
        <tr><td><SPAN CLASS="actxsmall">NETQUOTEVAR:CHECKBOXLABEL</SPAN></td></tr>
        <tr><td align=center><INPUT TYPE=CHECKBOX NAME="NETQUOTEVAR:CHECKBOXNAME" NETQUOTEVAR:CHECKSTATE>
        <SPAN CLASS="actxsmall">NETQUOTEVAR:PRICEEXPLANATION</SPAN></td></tr>
        </table>
        
        <!-- This template is used for a product variant checkbox. -->
        <!-- VariantCheckBox HTML end -->
        Go to Design / Text / Phase -1, ID 2045 and delete the <BR>

        Edit Act_CartButtonImage.html and replace the 1st

        <br>

        with

        <br clear=all>


        Norman
        Norman - www.drillpine.biz
        Edinburgh, U K / Bitez, Turkey

        Comment

        Working...
        X