Appending User Defined Data
Support avatar
Written by Support
Updated over a week ago

October 29, 2010
Updated: March 1, 2020

sticky.io CRM now supports appending up to 3 custom fields across order pages. To use these 3 fields, you need to post them as part of the POST to sticky.io Platform. The auto-generated index.php files will already contain the needed form code to do this but we will list it here as an example as well:

<input type='hidden' name='custom1' value='CUSTOM1'>

<input type='hidden' name='custom2' value='CUSTOM2'>

<input type='hidden' name='custom3' value='CUSTOM3'>

Note: The name of the custom fields MUST be custom1 or custom2 or custom3. If you change this value, it will not propagate the data correctly. Also, the data appended to the custom fields must be URL safe, which means no special characters, no spaces or anything that would need to be URL encoded.

&custom1=CUSTOM1Value&custom2=SomeCustom2Value

Sample URL with all 3 custom fields:
โ€‹

Did this answer your question?