CWC Quiz Response Hub
Colorado Wedding Co. — Quiz Response Hub
Every quiz completion, tracked in real time
Live responses
Total Responses
Photo + Video
Top Package
Most Wanted Tier
Loading responses...
Add sample responses to test the dashboard (simulates real quiz completions):
Alpine CollectionPhoto · $3,999
Summit CollectionPhoto · $4,999
Fourteeners CollectionPhoto · $6,999
Alpine FilmVideo · $3,999
Summit FilmVideo · $4,999
Fourteeners FilmVideo · $6,999
Alpine ExperiencePhoto+Video · $7,499
Summit ExperiencePhoto+Video · $9,999
Fourteeners ExperiencePhoto+Video · $12,999
Loading insights...
How Real Quiz Data Gets Here
This dashboard stores responses in localStorage so data persists between visits in the same browser. To capture live quiz submissions automatically, paste the snippet below into your quiz's submitToSquarespace() function, right after the existing form-fill logic:
/* === CWC DASHBOARD LOGGER — paste into submitToSquarespace() === */ try { var existing = JSON.parse(localStorage.getItem('cwc-quiz-responses') || '[]'); existing.unshift({ id: Date.now().toString(36), pkg: pkg.name, price: pkg.price, cov: ['photo','video','full'][answers['coverage'] || 0], tier: ['alpine','summit','14'][answers['style'] || 0], coverage: labelFor('coverage', ans), style: labelFor('style', ans), priority: labelFor('priority', ans), bonus: labelFor('bonus', ans), timeline: labelFor('timeline', ans), feel: labelFor('feel', ans), ts: Date.now() }); localStorage.setItem('cwc-quiz-responses', JSON.stringify(existing)); } catch(e) {} /* ============================================================ */
Then open this dashboard HTML file in the same browser where your quiz runs, and all completions will appear automatically.
What's Captured Per Response
✓ Recommended package + price
✓ Coverage choice (photo / video / both)
✓ Style preference (alpine / summit / 14ers)
✓ Priority answer
✓ Bonus preference (engagement / trailer / none)
✓ Delivery priority
✓ Final "feel" answer
✓ Timestamp