I'm new to the uCommerce system and looking for a bit of guidance on the best way to achieve the following behaviour:
Within the checkout process (preferably on the product page) I would like the user to be able to add in some free text (gift tag message) that will be stored against the order.
I can see how custom attributes can be stored against a product (e.g. size) but not sure how I should set up an option for a customer to enter text?
You can set properties on the order / basket both on orderline level and order level. Then it is just a matter of having the message posted back by a text box or similar.
You can do it like this order["GiftText"] = "yadayada";. (The order is an EntitiesV2).
Gift message / free text on a product
I'm new to the uCommerce system and looking for a bit of guidance on the best way to achieve the following behaviour:
Within the checkout process (preferably on the product page) I would like the user to be able to add in some free text (gift tag message) that will be stored against the order.
I can see how custom attributes can be stored against a product (e.g. size) but not sure how I should set up an option for a customer to enter text?
Any guidance on this would be much appreciated.
Hi Sam,
You can set properties on the order / basket both on orderline level and order level. Then it is just a matter of having the message posted back by a text box or similar.
You can do it like this order["GiftText"] = "yadayada";. (The order is an EntitiesV2).
Hope this helps :)
Best regards
Morten
is working on a reply...