Store Finder Feedback Form

The Store Finder Feedback form helps retailers understand how well their store locator serves customers. Beyond basic satisfaction, it captures search accuracy, information completeness, mobile experience, and actual visit outcomes. Learn whether customers found what they needed, visited successfully, and what improvements would help. Essential for multi-location retailers, franchises, and any business helping customers find physical locations.

Retail & E-commerce

Try the Form

Help us improve how you find our stores.
Your Search Experience
 
Device & Overall Experience
 
0/5
Suggestions
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
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
export function storeLocatorFeedbackForm(form: FormTs) {
// Store Locator Feedback - Evaluate store finder usability and accuracy
// Demonstrates: EmojiRating, StarRating, ThumbRating, RatingScale, CheckboxList, MatrixQuestion, conditional logic
 
// ============================================
// HEADER
// ============================================
form.addRow(row => {
row.addTextPanel('header', {
label: 'Store Finder Feedback',
computedValue: () => 'Help us improve how you find our stores.',
customStyles: {
backgroundColor: '#059669',
color: 'white',
padding: '28px',
borderRadius: '12px',
textAlign: 'center'
}
});
});
 
// ============================================
// SECTION 1: Search Experience
// ============================================
const searchSection = form.addSubform('search', {
title: 'Your Search Experience'
});
 
searchSection.addRow(row => {
row.addRadioButton('searchMethod', {
label: 'How did you search for a store?',
options: [
{ id: 'zip', name: 'By zip/postal code' },
{ id: 'city', name: 'By city name' },
{ id: 'address', name: 'By address' },
{ id: 'current', name: 'Use my current location' },
{ id: 'browse', name: 'Browsed the map' }
],
orientation: 'vertical'
});
});
 
searchSection.addRow(row => {
row.addEmojiRating('searchEase', {
label: 'How easy was it to find a store?',
preset: 'effort',
size: 'lg',
alignment: 'center',
showLabels: true
});
});
 
searchSection.addRow(row => {
row.addThumbRating('foundStore', {
label: 'Did you find a store near you?',
showLabels: true,
upLabel: 'Yes',
downLabel: 'No',
alignment: 'center'
});
});
 
// If didn't find store
searchSection.addRow(row => {
row.addTextPanel('noStoreMessage', {
computedValue: () => "We're sorry you couldn't find a nearby store. Help us understand what happened.",
customStyles: {
backgroundColor: '#fef3c7',
color: '#92400e',
padding: '12px',
borderRadius: '6px',
fontSize: '14px',
marginTop: '8px'
},
isVisible: () => searchSection.thumbRating('foundStore')?.value() === 'down'
});
});
 
searchSection.addRow(row => {
row.addRadioButton('noStoreReason', {
label: 'Why could you not find a store?',
options: [
{ id: 'none-nearby', name: 'No stores in my area' },
{ id: 'too-far', name: 'Nearest store was too far' },
{ id: 'search-failed', name: 'Search did not work properly' },
{ id: 'confusing', name: 'Interface was confusing' },
{ id: 'other', name: 'Other reason' }
],
orientation: 'vertical',
isVisible: () => searchSection.thumbRating('foundStore')?.value() === 'down'
});
});
 
// ============================================
// SECTION 2: Results Quality (if found store)
// ============================================
const resultsSection = form.addSubform('results', {
title: 'Search Results Quality',
isVisible: () => searchSection.thumbRating('foundStore')?.value() === 'up'
});
 
resultsSection.addRow(row => {
row.addStarRating('resultsRelevance', {
label: 'How relevant were the search results?',
maxStars: 5,
size: 'lg',
alignment: 'center',
showCounter: true
});
});
 
resultsSection.addRow(row => {
row.addRadioButton('resultsCount', {
label: 'Did you see the right number of results?',
options: [
{ id: 'too-few', name: 'Too few options shown' },
{ id: 'just-right', name: 'Just right' },
{ id: 'too-many', name: 'Too many to browse through' }
],
orientation: 'horizontal'
});
});
 
resultsSection.addRow(row => {
row.addRatingScale('locationAccuracy', {
label: 'How accurate was the distance/location information?',
preset: 'likert-5',
lowLabel: 'Inaccurate',
highLabel: 'Very Accurate',
alignment: 'center'
});
});
 
// ============================================
// SECTION 3: Store Information
// ============================================
const infoSection = form.addSubform('info', {
title: 'Store Information Quality',
isVisible: () => searchSection.thumbRating('foundStore')?.value() === 'up'
});
 
infoSection.addRow(row => {
row.addMatrixQuestion('infoCompleteness', {
label: 'Rate the information provided for stores:',
rows: [
{ id: 'address', label: 'Address/directions', isRequired: true },
{ id: 'hours', label: 'Store hours', isRequired: true },
{ id: 'phone', label: 'Phone number', isRequired: false },
{ id: 'services', label: 'Services available', isRequired: false },
{ id: 'photos', label: 'Store photos', isRequired: false }
],
columns: [
{ id: 'missing', label: 'Missing' },
{ id: 'poor', label: 'Poor' },
{ id: 'ok', label: 'OK' },
{ id: 'good', label: 'Good' },
{ id: 'great', label: 'Great' }
],
fullWidth: true,
striped: true
});
});
 
infoSection.addRow(row => {
row.addCheckboxList('missingInfo', {
label: 'What information was missing or would be helpful?',
options: [
{ id: 'parking', name: 'Parking availability' },
{ id: 'accessibility', name: 'Accessibility features' },
{ id: 'inventory', name: 'Product availability/inventory' },
{ id: 'wait-times', name: 'Current wait times' },
{ id: 'special-hours', name: 'Holiday/special hours' },
{ id: 'appointments', name: 'Appointment booking' },
{ id: 'curbside', name: 'Curbside pickup info' },
{ id: 'photos', name: 'More/better photos' }
],
orientation: 'vertical'
});
});
 
// ============================================
// SECTION 4: Map & Directions
// ============================================
const mapSection = form.addSubform('map', {
title: 'Map & Directions',
isVisible: () => searchSection.thumbRating('foundStore')?.value() === 'up'
});
 
mapSection.addRow(row => {
row.addStarRating('mapUsability', {
label: 'How easy was the map to use?',
maxStars: 5,
size: 'lg',
alignment: 'center',
showCounter: true
});
});
 
mapSection.addRow(row => {
row.addThumbRating('usedDirections', {
label: 'Did you get directions to a store?',
showLabels: true,
upLabel: 'Yes',
downLabel: 'No',
alignment: 'center'
});
});
 
mapSection.addRow(row => {
row.addRadioButton('directionsQuality', {
label: 'How were the directions?',
options: [
{ id: 'excellent', name: 'Excellent - got there easily' },
{ id: 'good', name: 'Good - minor issues' },
{ id: 'poor', name: 'Poor - had trouble finding it' },
{ id: 'wrong', name: 'Wrong - led me to wrong location' }
],
orientation: 'vertical',
isVisible: () => mapSection.thumbRating('usedDirections')?.value() === 'up'
});
});
 
// ============================================
// SECTION 5: Visit Outcome
// ============================================
const visitSection = form.addSubform('visit', {
title: 'Your Visit',
isVisible: () => searchSection.thumbRating('foundStore')?.value() === 'up'
});
 
visitSection.addRow(row => {
row.addRadioButton('visitIntent', {
label: 'Do you plan to visit the store you found?',
options: [
{ id: 'already-visited', name: 'Already visited' },
{ id: 'will-visit', name: 'Yes, will visit soon' },
{ id: 'maybe', name: 'Maybe/undecided' },
{ id: 'no', name: 'No, will not visit' }
],
orientation: 'vertical'
});
});
 
visitSection.addRow(row => {
row.addEmojiRating('visitExperience', {
label: 'How was your store visit?',
preset: 'satisfaction',
size: 'lg',
alignment: 'center',
showLabels: true,
isVisible: () => visitSection.radioButton('visitIntent')?.value() === 'already-visited'
});
});
 
visitSection.addRow(row => {
row.addRadioButton('noVisitReason', {
label: 'Why will you not visit?',
options: [
{ id: 'too-far', name: 'Store is too far' },
{ id: 'hours', name: 'Store hours do not work for me' },
{ id: 'prefer-online', name: 'Prefer to shop online instead' },
{ id: 'no-stock', name: 'Product I need is not available' },
{ id: 'other', name: 'Other reason' }
],
orientation: 'vertical',
isVisible: () => visitSection.radioButton('visitIntent')?.value() === 'no'
});
});
 
// ============================================
// SECTION 6: Device Experience
// ============================================
const deviceSection = form.addSubform('device', {
title: 'Device & Overall Experience'
});
 
deviceSection.addRow(row => {
row.addRadioButton('deviceUsed', {
label: 'What device did you use?',
options: [
{ id: 'phone', name: 'Smartphone' },
{ id: 'tablet', name: 'Tablet' },
{ id: 'computer', name: 'Computer' }
],
orientation: 'horizontal'
});
});
 
deviceSection.addRow(row => {
row.addStarRating('overallRating', {
label: 'Overall, how would you rate the store finder?',
maxStars: 5,
size: 'lg',
alignment: 'center',
showCounter: true,
showConfettiOnMax: true
});
});
 
deviceSection.addRow(row => {
row.addThumbRating('wouldUseAgain', {
label: 'Would you use our store finder again?',
showLabels: true,
upLabel: 'Yes',
downLabel: 'No',
alignment: 'center'
});
});
 
// ============================================
// SECTION 7: Improvements
// ============================================
const improvementsSection = form.addSubform('improvements', {
title: 'Suggestions'
});
 
improvementsSection.addSpacer({ height: '10px' });
 
improvementsSection.addRow(row => {
row.addTextarea('improvementSuggestions', {
label: 'How can we improve the store finder?',
placeholder: 'Share any suggestions for features, information, or usability improvements...',
rows: 4,
autoExpand: true
});
});
 
improvementsSection.addRow(row => {
row.addTextarea('reportedIssues', {
label: 'Did you notice any errors or issues?',
placeholder: 'Report incorrect addresses, hours, phone numbers, or other errors...',
rows: 3,
autoExpand: true
});
});
 
// ============================================
// SECTION 8: Summary
// ============================================
const summarySection = form.addSubform('summary', {
title: 'Feedback Summary',
isVisible: () => searchSection.thumbRating('foundStore')?.value() !== null
});
 
summarySection.addRow(row => {
row.addTextPanel('summaryContent', {
computedValue: () => {
const foundStore = searchSection.thumbRating('foundStore')?.value();
const searchEase = searchSection.emojiRating('searchEase')?.value();
const resultsRating = resultsSection.starRating('resultsRelevance')?.value();
const mapRating = mapSection.starRating('mapUsability')?.value();
const overallRating = deviceSection.starRating('overallRating')?.value();
const visitIntent = visitSection.radioButton('visitIntent')?.value();
const wouldUseAgain = deviceSection.thumbRating('wouldUseAgain')?.value();
 
const easeLabels: Record<string, string> = {
'very-hard': 'Very Difficult',
'hard': 'Difficult',
'neutral': 'Moderate',
'easy': 'Easy',
'very-easy': 'Very Easy'
};
 
const intentLabels: Record<string, string> = {
'already-visited': 'Already visited',
'will-visit': 'Planning to visit',
'maybe': 'Undecided',
'no': 'Will not visit'
};
 
let statusIcon = foundStore === 'up' ? '🟒' : 'πŸ”΄';
let summary = `${statusIcon} Store Finder Feedback\n`;
summary += `${'═'.repeat(28)}\n\n`;
 
summary += `πŸ“ Store Found: ${foundStore === 'up' ? 'Yes' : 'No'}\n`;
 
if (searchEase) {
summary += `πŸ” Search Ease: ${easeLabels[searchEase] || searchEase}\n`;
}
 
if (resultsRating) {
summary += `⭐ Results Quality: ${resultsRating}/5\n`;
}
 
if (mapRating) {
summary += `πŸ—ΊοΈ Map Usability: ${mapRating}/5\n`;
}
 
if (overallRating) {
summary += `\nπŸ“Š Overall Rating: ${overallRating}/5 stars\n`;
}
 
if (visitIntent) {
summary += `πŸͺ Visit Status: ${intentLabels[visitIntent] || visitIntent}\n`;
}
 
if (wouldUseAgain) {
summary += `πŸ”„ Would Use Again: ${wouldUseAgain === 'up' ? 'Yes' : 'No'}`;
}
 
return summary;
},
customStyles: () => {
const foundStore = searchSection.thumbRating('foundStore')?.value();
const overallRating = deviceSection.starRating('overallRating')?.value();
const baseStyles = {
padding: '20px',
borderRadius: '8px',
whiteSpace: 'pre-wrap',
fontFamily: 'monospace',
fontSize: '14px'
};
 
if (foundStore === 'down') {
return { ...baseStyles, backgroundColor: '#fee2e2', borderLeft: '4px solid #ef4444' };
} else if (overallRating && overallRating >= 4) {
return { ...baseStyles, backgroundColor: '#d1fae5', borderLeft: '4px solid #10b981' };
} else if (overallRating && overallRating >= 3) {
return { ...baseStyles, backgroundColor: '#fef3c7', borderLeft: '4px solid #f59e0b' };
} else if (overallRating) {
return { ...baseStyles, backgroundColor: '#fee2e2', borderLeft: '4px solid #ef4444' };
}
return { ...baseStyles, backgroundColor: '#f1f5f9', borderLeft: '4px solid #94a3b8' };
}
});
});
 
// ============================================
// FORM CONFIGURATION
// ============================================
form.configureSubmitButton({
label: 'Submit Feedback'
});
 
form.configureCompletionScreen({
type: 'text',
title: 'Thank You for Your Feedback!',
message: 'Your insights help us make it easier for customers to find our stores. We appreciate you taking the time to share your experience.'
});
}
 

Frequently Asked Questions

When should I trigger this survey?

Best triggered after a user searches and views store results, or after clicking for directions. Avoid interrupting the search process itself. Consider showing on store detail pages.

What if users report incorrect store information?

Create a process to quickly verify and correct reported issues. Incorrect hours, phone numbers, or addresses directly impact store visits. Prioritize fixes for high-traffic locations.

How can I improve store locator conversion?

Use feedback to understand the full journey: Did they find a store? Did they visit? Why or why not? Gaps reveal opportunities like better filters, real-time inventory, or appointment booking.

Should I show different questions for mobile vs desktop?

Mobile users often need immediate directions while desktop users may be planning ahead. Consider adding device-specific questions about map usability, one-tap directions, and mobile map app integration.

How do I measure store locator success?

Track the full funnel: searches performed, stores viewed, directions clicked, and reported visits. This form helps capture the final step - did users successfully find and visit stores?