Announcement

Collapse
No announcement yet.

Select Option for multiple SKUs

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

  • Select Option for multiple SKUs

    Any idea on how to have multiple SKUS available to select from - rather than having amounts per SKU?
    I want to do something exactly like this, only with SKUS as the options: https://www.clickandpledge.com/Platf.../example/000c/

  • #2
    Good day @NRoosien,

    You are trying to assign 2 values to the same pull down menu. The only way I can think of is a javascript that assigns a different SKU based on the value selected from the pull down menu.

    Not sure if that helps.
    Regards,
    Click & Pledge Support Department

    Join us @ the educational webinars: https://clickandpledge.com/webinars/
    Live Support- read more: https://support.clickandpledge.com/s/article/general-information-live-support/

    Comment


    • #3
      Is there a radio button option that would make sense?

      Comment


      • #4
        For all practical purposes the pull down menu and radio buttons are exactly the same. The only difference is the UI. Both are single valued selections.

        Perhaps you can do one thing... just brainstorming here.

        HTML Code:
        <select name="SKU1" id="SKU1">
        <option value="SKU for General Fund">General Fund</option>
        <option value="SKU for Alumni Fund">Alumni Fund</option>
        <option value="SKU for Studentt Housing">Student Housing</option>
        <option value="SKU for Scholorship">Scholarship</option>
        </select>
        Through the above you are passing the SKU as the pull down menu.

        For ItemName you will have:

        HTML Code:
        <input name="ItemName1" type="hidden" id="ItemName1" value="Donation" />
        In Salesforce you can change the item name for the opportunity in the C&P Settings based on SKU

        One disadvantage of this approach is the receipt. Regardless of the choice the person will show Donation (the value used in the ItemName1) on the receipt.

        Another approach you can use is to use the pull down menu as custom question. Possibly even a form such as:

        https://www.clickandpledge.com/Platf...s/example/001/

        where people can contribute to multiple funds at once instead only donating to one.

        Hope it helps.
        Last edited by CnP.Support; 09-24-2015, 09:01 AM.
        Regards,
        Click & Pledge Support Department

        Join us @ the educational webinars: https://clickandpledge.com/webinars/
        Live Support- read more: https://support.clickandpledge.com/s/article/general-information-live-support/

        Comment


        • #5
          Ok, this is helpful. Thanks for explaining that in detail.

          Comment

          Working...
          X