cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Adding Comments by product at checkout

Former Member
0 Likes
226

Dear Experts, I would like to know if there is any option OOTB for adding comments at checkout by product (position). If not how can I add a field at checkout....? Best Regards. David Cortés.

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Likes

Hi experts, I found a better solution OOB... You may add the extensions: After that, ant clean all and update system.... Then you will be able to create a "Configurable Category". In Genera --> Configuration create a new Configured Product. Assign this Category to a product and sync to online. Then a new button call "Configuration" will appear in the product assigned to the category. Click and you will see the new field created. Best Regards. .

Answers (1)

Answers (1)

crescenzorega
Active Participant
0 Likes

the comment field already exists in the CartEntryModel and OrderEntryModel since it is an extension of the ItemModel setComments or you can create a new string field in the AbstractOrderEntryModel object

You must then edit the Data objects by adding the comment field; In the checkout you must add a field and map it with the comment field of the Data object; When mapping from Data to Model, create a CommentModel list and populate it with the contents of the comment field of the Data object or if you have created a new field, copy the value

Former Member
0 Likes

Thank you so much for your help Crescenzo... Regards