Announcement

Collapse
No announcement yet.

Creating custom select question field in FaaS

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

  • Creating custom select question field in FaaS

    Trying to create a custom question using a select field, so that we can determine which effort the giver supports. Those efforts are not separate campaigns - we just want a record of this. Here's the form - it's the 'Campaign Designator' field: https://www.freetheslaves.net/donate/ Just can't figure out the syntax.

    Here's what we've tried:

    <select id="FieldName2" name="FieldName2">
    <option selected="selected" value="Free the Slaves General Support">Free the Slaves General Support</option>
    <option value="Judaism in Action Project" >Judaism in Action Project</option>
    <option value="James Hannaham Book Launch" >James Hannaham Book Launch</option>
    </select>

  • #2
    Good day!

    I changed one of our examples on our site to show custom question samples.

    see: https://www.clickandpledge.com/Platf...s/example/003/

    In general:

    Every question has 2 fields:
    • Question: FieldName1, 2, 3, ..
    • Answer: FieldValue1, 2, 3

    Questions & answers need to be in pairs:
    • FieldName1, FieldValue1
    • FieldName2, FieldValue2
    • FieldName3, FieldValue3

    If you look at the link above, the list example, as shown below, is in 2 sections, FieldName1 which is the question (Meal Preference) and the answer

    <input name="FieldName1" type="hidden" id="FieldName1" value="Meal Preference">
    <select name="FieldValue1" id="FieldValue1">
    <option value="Steak">Steak</option>
    <option value="Chicken">Chicken</option>
    <option value="Fish">Fish</option>
    <option value="Vegetarian">Vegetarian</option>
    </select>

    The answer to the question, Meal Preference, will be the selection from the pull down menu option. The question will be posted as FieldName1 and the answer will post as FieldValue1

    I hope that answers the question.

    Please let us know if we can be of any further assistance.
    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
      That worked. Thanks!

      Comment


      • #4
        ON this note, and for the same account, I am trying to take the answers to the custom questions, specifically Campaign Designator, and map it to Donation Name in Salesforce, but don't see Donation Name as a possible field to map to in my C&P Settings/Custom Questions section. What am I missing?

        Comment


        • #5
          Good day!

          Based on what you are asking I am assuming you want to change the Opportunity Name based on the answer to the custom question. Is this right?
          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


          • #6
            Yes, we want to change the Opportunity Name. I notice when I go into C&P settings, and click on Opportunity, the only field I can't choose to map to is Opportunity Name.

            Comment

            Working...
            X