Checkout Experience Feedback

This checkout experience feedback form helps e-commerce businesses understand their customers' purchase journey. Using the Customer Effort Score methodology, it measures how easy or difficult customers find the checkout process. The form captures specific friction points like payment issues, shipping concerns, and form complexity - giving you actionable data to optimize conversions and reduce cart abandonment.

Retail & E-commerce

Try the Form

Help us make checkout faster and easier
Checkout Effort
Very Difficult
Very Easy
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
export function checkoutFeedback(form: FormTs) {
// Checkout Experience Feedback - E-commerce checkout optimization
// Demonstrates: RatingScale (CES), CheckboxList, RadioButton, StarRating, EmojiRating, Slider, MatrixQuestion, conditional sections
 
// ============================================
// HEADER
// ============================================
form.addRow(row => {
row.addTextPanel('header', {
label: 'Checkout Experience Feedback',
computedValue: () => 'Help us make checkout faster and easier',
customStyles: {
backgroundColor: '#059669',
color: 'white',
padding: '24px',
borderRadius: '12px',
textAlign: 'center'
}
});
});
 
// ============================================
// SECTION 1: Customer Effort Score
// ============================================
const cesSection = form.addSubform('cesSection', {
title: 'Checkout Effort',
customStyles: () => {
const score = cesSection.ratingScale('effortScore')?.value();
if (score && score >= 6) return { backgroundColor: '#d1fae5', padding: '16px', borderRadius: '8px' };
if (score && score >= 4) return { backgroundColor: '#fef3c7', padding: '16px', borderRadius: '8px' };
if (score && score >= 1) return { backgroundColor: '#fee2e2', padding: '16px', borderRadius: '8px' };
return { padding: '16px', borderRadius: '8px', border: '1px dashed #cbd5e1' };
}
});
 
cesSection.addRow(row => {
row.addRatingScale('effortScore', {
preset: 'ces',
label: 'How easy was it to complete your checkout today?',
lowLabel: 'Very Difficult',
highLabel: 'Very Easy',
alignment: 'center',
isRequired: true
});
});
 
cesSection.addRow(row => {
row.addEmojiRating('checkoutMood', {
label: 'How did you feel during checkout?',
preset: 'effort',
size: 'lg',
showLabels: true,
alignment: 'center'
});
});
 
// ============================================
// SECTION 2: Checkout Steps Rating
// ============================================
const stepsSection = form.addSubform('stepsSection', {
title: 'Checkout Steps',
isVisible: () => cesSection.ratingScale('effortScore')?.value() !== null,
customStyles: { padding: '16px', borderRadius: '8px', border: '1px solid #e2e8f0' }
});
 
stepsSection.addRow(row => {
row.addMatrixQuestion('stepRatings', {
label: 'Rate each step of the checkout process:',
rows: [
{ id: 'cart', label: 'Shopping Cart Review', description: 'Reviewing items, quantities, prices', isRequired: true },
{ id: 'shipping', label: 'Shipping Information', description: 'Address entry, delivery options', isRequired: true },
{ id: 'payment', label: 'Payment', description: 'Payment method selection and entry', isRequired: true },
{ id: 'confirmation', label: 'Order Confirmation', description: 'Final review and placing order', isRequired: false }
],
columns: [
{ id: 'skip', label: 'N/A' },
{ id: '1', label: 'Frustrating' },
{ id: '2', label: 'Difficult' },
{ id: '3', label: 'OK' },
{ id: '4', label: 'Easy' },
{ id: '5', label: 'Seamless' }
],
striped: true,
fullWidth: true
});
});
 
// ============================================
// SECTION 3: Friction Points
// ============================================
const frictionSection = form.addSubform('frictionSection', {
title: 'Did You Experience Any Issues?',
isVisible: () => {
const score = cesSection.ratingScale('effortScore')?.value();
return score !== null && score !== undefined && score <= 5;
},
customStyles: { backgroundColor: '#fef3c7', padding: '16px', borderRadius: '8px' }
});
 
frictionSection.addRow(row => {
row.addCheckboxList('frictionPoints', {
label: 'What made checkout difficult? (select all that apply)',
options: [
{ id: 'too-many-steps', name: 'Too many steps/pages' },
{ id: 'slow-loading', name: 'Slow page loading' },
{ id: 'required-account', name: 'Required to create an account' },
{ id: 'form-errors', name: 'Confusing form validation errors' },
{ id: 'payment-failed', name: 'Payment method issues' },
{ id: 'shipping-options', name: 'Limited shipping options' },
{ id: 'shipping-cost', name: 'Unexpected shipping costs' },
{ id: 'promo-code', name: 'Promo code problems' },
{ id: 'mobile-issues', name: 'Mobile/touch issues' },
{ id: 'unclear-total', name: 'Unclear total price' },
{ id: 'security-concerns', name: 'Security concerns' },
{ id: 'address-issues', name: 'Address auto-fill problems' }
],
orientation: 'vertical'
});
});
 
frictionSection.addSpacer();
 
frictionSection.addRow(row => {
row.addTextarea('frictionDetails', {
label: 'Please describe any specific issues',
placeholder: 'Tell us what went wrong so we can fix it...',
rows: 2,
autoExpand: true
});
});
 
// ============================================
// SECTION 4: Smooth Experience (for high CES scores)
// ============================================
const smoothSection = form.addSubform('smoothSection', {
title: 'What Worked Well?',
isVisible: () => {
const score = cesSection.ratingScale('effortScore')?.value();
return score !== null && score !== undefined && score >= 5;
},
customStyles: { backgroundColor: '#d1fae5', padding: '16px', borderRadius: '8px' }
});
 
smoothSection.addRow(row => {
row.addCheckboxList('positivePoints', {
label: 'What made checkout easy? (select all that apply)',
options: [
{ id: 'fast', name: 'Fast and responsive' },
{ id: 'few-steps', name: 'Few steps to complete' },
{ id: 'guest-checkout', name: 'Guest checkout available' },
{ id: 'saved-info', name: 'Saved payment/address info' },
{ id: 'clear-progress', name: 'Clear progress indicator' },
{ id: 'multiple-payment', name: 'Multiple payment options' },
{ id: 'mobile-friendly', name: 'Mobile-friendly design' },
{ id: 'transparent-costs', name: 'Transparent pricing' }
],
orientation: 'vertical'
});
});
 
// ============================================
// SECTION 5: Payment Experience
// ============================================
const paymentSection = form.addSubform('paymentSection', {
title: 'Payment Experience',
isVisible: () => cesSection.ratingScale('effortScore')?.value() !== null
});
 
paymentSection.addRow(row => {
row.addRadioButton('paymentMethod', {
label: 'Which payment method did you use?',
options: [
{ id: 'credit-card', name: 'Credit/Debit Card' },
{ id: 'paypal', name: 'PayPal' },
{ id: 'apple-pay', name: 'Apple Pay' },
{ id: 'google-pay', name: 'Google Pay' },
{ id: 'bank-transfer', name: 'Bank Transfer' },
{ id: 'buy-now-pay-later', name: 'Buy Now Pay Later' },
{ id: 'other', name: 'Other' }
],
orientation: 'vertical'
}, '1fr');
row.addStarRating('paymentEase', {
label: 'Payment process ease',
maxStars: 5,
size: 'lg',
alignment: 'left'
}, '1fr');
});
 
paymentSection.addRow(row => {
row.addThumbRating('paymentSecure', {
label: 'Did you feel the payment was secure?',
showLabels: true,
upLabel: 'Yes, felt secure',
downLabel: 'Had concerns',
alignment: 'center',
size: 'lg'
});
});
 
// ============================================
// SECTION 6: Speed & Performance
// ============================================
const speedSection = form.addSubform('speedSection', {
title: 'Speed & Performance',
isVisible: () => cesSection.ratingScale('effortScore')?.value() !== null
});
 
speedSection.addRow(row => {
row.addSlider('perceivedSpeed', {
label: 'How fast did checkout feel?',
min: 0,
max: 100,
step: 10,
unit: '',
showValue: true,
defaultValue: 50
});
});
 
speedSection.addRow(row => {
row.addTextPanel('speedLabels', {
computedValue: () => {
const speed = speedSection.slider('perceivedSpeed')?.value();
if (speed === null || speed === undefined) return 'Move the slider to rate speed';
if (speed <= 20) return 'Very Slow - significant wait times';
if (speed <= 40) return 'Slow - noticeable delays';
if (speed <= 60) return 'Average - acceptable speed';
if (speed <= 80) return 'Fast - smooth experience';
return 'Lightning Fast - instant responses';
},
customStyles: () => {
const speed = speedSection.slider('perceivedSpeed')?.value();
const baseStyles = {
textAlign: 'center',
padding: '8px 16px',
borderRadius: '4px',
fontSize: '14px'
};
if (speed && speed >= 60) return { ...baseStyles, backgroundColor: '#d1fae5', color: '#065f46' };
if (speed && speed >= 40) return { ...baseStyles, backgroundColor: '#fef3c7', color: '#92400e' };
if (speed && speed >= 1) return { ...baseStyles, backgroundColor: '#fee2e2', color: '#991b1b' };
return { ...baseStyles, backgroundColor: '#f1f5f9', color: '#475569' };
}
});
});
 
speedSection.addRow(row => {
row.addDropdown('device', {
label: 'Device used for checkout',
options: [
{ id: 'desktop', name: 'Desktop/Laptop' },
{ id: 'mobile', name: 'Mobile Phone' },
{ id: 'tablet', name: 'Tablet' }
],
placeholder: 'Select device'
}, '1fr');
row.addDropdown('checkoutTime', {
label: 'Approximate checkout time',
options: [
{ id: 'under-1', name: 'Under 1 minute' },
{ id: '1-3', name: '1-3 minutes' },
{ id: '3-5', name: '3-5 minutes' },
{ id: '5-10', name: '5-10 minutes' },
{ id: 'over-10', name: 'Over 10 minutes' }
],
placeholder: 'Select time'
}, '1fr');
});
 
// ============================================
// SECTION 7: Recommendations
// ============================================
const recommendSection = form.addSubform('recommendSection', {
title: 'Final Thoughts',
isVisible: () => cesSection.ratingScale('effortScore')?.value() !== null
});
 
recommendSection.addRow(row => {
row.addThumbRating('wouldShopAgain', {
label: 'Would the checkout experience encourage you to shop here again?',
showLabels: true,
upLabel: 'Yes',
downLabel: 'No',
alignment: 'center',
size: 'lg'
});
});
 
recommendSection.addRow(row => {
row.addRatingScale('overallSatisfaction', {
preset: 'satisfaction',
label: 'Overall checkout satisfaction',
lowLabel: 'Very Dissatisfied',
highLabel: 'Very Satisfied',
alignment: 'center'
});
});
 
recommendSection.addSpacer();
 
recommendSection.addRow(row => {
row.addTextarea('suggestions', {
label: 'How could we improve checkout?',
placeholder: 'Share your ideas for making checkout better...',
rows: 3,
autoExpand: true
});
});
 
// ============================================
// SECTION 8: Summary
// ============================================
const summarySection = form.addSubform('summarySection', {
title: 'Feedback Summary',
isVisible: () => cesSection.ratingScale('effortScore')?.value() !== null
});
 
summarySection.addRow(row => {
row.addTextPanel('summaryContent', {
computedValue: () => {
const effortScore = cesSection.ratingScale('effortScore')?.value();
const mood = cesSection.emojiRating('checkoutMood')?.value();
const frictions = frictionSection.checkboxList('frictionPoints')?.value() || [];
const positives = smoothSection.checkboxList('positivePoints')?.value() || [];
const paymentEase = paymentSection.starRating('paymentEase')?.value();
const speed = speedSection.slider('perceivedSpeed')?.value();
const wouldShop = recommendSection.thumbRating('wouldShopAgain')?.value();
const satisfaction = recommendSection.ratingScale('overallSatisfaction')?.value();
 
if (!effortScore) return '';
 
const moodLabels: Record<string, string> = {
'very-hard': 'Frustrated',
'hard': 'Struggled',
'neutral': 'Neutral',
'easy': 'Comfortable',
'very-easy': 'Delighted'
};
 
let cesCategory = 'Difficult';
if (effortScore >= 6) cesCategory = 'Easy';
else if (effortScore >= 4) cesCategory = 'Moderate';
 
let summary = `CHECKOUT FEEDBACK\n`;
summary += `${'═'.repeat(25)}\n\n`;
summary += `Effort Score: ${effortScore}/7 (${cesCategory})\n`;
 
if (mood) {
summary += `Experience: ${moodLabels[mood] || mood}\n`;
}
 
if (paymentEase) {
summary += `Payment Ease: ${'★'.repeat(paymentEase)}${'☆'.repeat(5 - paymentEase)}\n`;
}
 
if (speed !== null && speed !== undefined) {
summary += `Perceived Speed: ${speed}%\n`;
}
 
if (frictions.length > 0) {
summary += `\n⚠️ Issues encountered: ${frictions.length}\n`;
}
 
if (positives.length > 0) {
summary += `✅ Positives noted: ${positives.length}\n`;
}
 
if (satisfaction) {
summary += `\nSatisfaction: ${satisfaction}/5\n`;
}
 
if (wouldShop) {
const emoji = wouldShop === 'up' ? '👍' : '👎';
summary += `${emoji} Shop again: ${wouldShop === 'up' ? 'Yes' : 'Unlikely'}`;
}
 
return summary;
},
customStyles: () => {
const score = cesSection.ratingScale('effortScore')?.value();
const baseStyles = {
padding: '16px',
borderRadius: '8px',
whiteSpace: 'pre-wrap',
fontFamily: 'monospace',
fontSize: '13px'
};
 
if (score && score >= 6) {
return { ...baseStyles, backgroundColor: '#d1fae5', borderLeft: '4px solid #10b981' };
} else if (score && score >= 4) {
return { ...baseStyles, backgroundColor: '#fef3c7', borderLeft: '4px solid #f59e0b' };
} else if (score && score >= 1) {
return { ...baseStyles, backgroundColor: '#fee2e2', borderLeft: '4px solid #ef4444' };
}
return { ...baseStyles, backgroundColor: '#f8fafc', borderLeft: '4px solid #059669' };
}
});
});
 
// ============================================
// FORM CONFIGURATION
// ============================================
form.configureSubmitButton({
label: 'Submit Feedback',
isVisible: () => cesSection.ratingScale('effortScore')?.value() !== null
});
 
form.configureCompletionScreen({
type: 'text',
title: 'Thank You for Your Feedback!',
message: 'Your input helps us create a smoother checkout experience for everyone. Happy shopping!'
});
}
 

Frequently Asked Questions

When should I show the checkout feedback form?

Display immediately after order confirmation, on the thank-you page. Customers have just completed the experience and can provide accurate feedback. Avoid delays which reduce recall accuracy and response rates.

What's a good Customer Effort Score for checkout?

For checkout processes, aim for CES scores of 5.5+ on a 7-point scale. Scores below 4 indicate significant friction requiring immediate attention. Top e-commerce sites typically achieve 6+.

How do I identify the biggest checkout friction points?

Analyze the checkbox selections in the friction points section. Look for patterns: if 40%+ select the same issue (e.g., 'too many steps'), prioritize fixing it. Cross-reference with abandoned cart data for complete picture.

Should I ask for feedback on failed checkout attempts?

Yes! Consider a separate exit-intent survey for cart abandonment. This template focuses on successful checkouts, but understanding why people leave is equally valuable.

How can I improve my checkout CES score?

Common improvements: reduce form fields, enable guest checkout, add progress indicators, offer multiple payment options, auto-fill where possible, and ensure mobile optimization. This survey helps identify which to prioritize.