Announcement

Collapse
No announcement yet.

Add an SKU number to a Faas page

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

  • Add an SKU number to a Faas page

    Hello,
    I would like to add a SKU number to this donation page that I created with your Faas



    The SKU number needs to be automatically inserted in a Salesforce donor page.

    How do I go about it?


    thanks

  • #2
    Good day @Giovannamd3;

    In your form - Line 281

    HTML Code:
    <td><input id="UnitPrice" type="text" name="UnitPrice" size="10" value="" /><input id="ItemID" type="hidden" name="ItemID" value="1" /><input id="ItemName" type="hidden" name="ItemName" value="Donation" /><input id="Quantity" type="hidden" name="Quantity" value="1" /><input id="UnitDeductible" type="hidden" name="UnitDeductible" value="100%" /></td>
    Please refer to the manual: http://manual.clickandpledge.com/For...ct_Information

    I also like to suggest that you make the following changes to the listing to make sure it is compliant with the latest release of the API:


    HTML Code:
    <td>
    <input id="UnitPrice1" type="text" name="UnitPrice1" size="10" value="" />
    <input id="ItemID1" type="hidden" name="ItemID1" value="1" />
    <input id="ItemName1" type="hidden" name="ItemName1" value="Donation" />
    <input id="Quantity1" type="hidden" name="Quantity1" value="1" />
    <input id="UnitDeductible1" type="hidden" name="UnitDeductible1" value="100%" />
    <input id="SKU1" type="hidden" name="SKU1" value="ABC-123" />
    </td>
    note that I added "1" to the end of each ID & Name and the SKU that I added to the bottom of the form.

    Please let me know if the above helps you with your question.
    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

    Working...
    X