πCustom Fields on Order
Starting from version 2.2.1, you have the ability to incorporate custom-defined fields into the order form.
Setting up the Custom Fields
[{
"title": "Customer phone numner",
"key": "customer_phone_number",
"ftype": "input",
"type": "phone",
"placeholder": "Enter your phone"
},
{
"title": "Customer email",
"key": "customer_email",
"ftype": "input",
"type": "email",
"value": "[email protected]"
},
{
"title": "Country",
"key": "customer_country",
"ftype": "select",
"data": {
"ph": "Philippines",
"usa": "United States of America"
}
},
{
"title": "is this a gift",
"key": "send_as_gift",
"ftype": "bool",
"value": true
},
{
"title": "Custom note",
"key": "custom_note",
"ftype": "textarea"
}
]
Custom Fields Translation

Last updated