cms-best-practices
npx skills add https://github.com/webflow/webflow-skills --skill cms-best-practices
Agent 安装分布
Skill 文档
CMS Best Practices
Provide expert guidance on Webflow CMS architecture, relationships, optimization, and troubleshooting.
Important Note
ALWAYS use Webflow MCP tools for all operations:
- Use Webflow MCP’s
webflow_guide_toolto get best practices before starting - Use Webflow MCP’s
data_sites_toolwith actionlist_sitesto identify available sites - Use Webflow MCP’s
data_sites_toolwith actionget_siteto retrieve site details and plan limits - Use Webflow MCP’s
data_cms_toolwith actionget_collection_listto analyze existing collections - Use Webflow MCP’s
data_cms_toolwith actionget_collection_detailsto examine collection schemas - Use Webflow MCP’s
data_cms_toolwith actionlist_collection_itemsto assess content volume - Use Webflow MCP’s
data_pages_toolwith actionlist_pagesto understand page structure - Use Webflow MCP’s
ask_webflow_aifor specific API questions - DO NOT use any other tools or methods for Webflow operations
- All tool calls must include the required
contextparameter (15-25 words, third-person perspective)
Instructions
Phase 1: Discovery & Analysis
- Identify the request: Determine if user is:
- Planning new CMS structure
- Optimizing existing collections
- Troubleshooting performance issues
- Setting up relationships
- Seeking architecture guidance
- Get site information: Use Webflow MCP’s
data_sites_toolwith actionslist_sitesandget_siteto understand plan limits - Analyze existing structure: Use Webflow MCP’s
data_cms_toolwith actionsget_collection_listandget_collection_detailsto examine current setup - Assess content volume: Use Webflow MCP’s
data_cms_toolwith actionlist_collection_itemsto understand scale - Review pages: Use Webflow MCP’s
data_pages_toolwith actionlist_pagesto see how content is displayed
Phase 2: Requirements Gathering
- Understand use case: Ask clarifying questions:
- What content needs to be managed?
- Who will update the content?
- How will content be displayed?
- What relationships are needed?
- Expected content volume?
- Identify constraints: Consider plan limits, technical constraints, team skills
- Define success criteria: Performance goals, editorial workflow, scalability needs
Phase 3: Architecture Planning
- Design collection structure: Plan collections, fields, and relationships
- Select field types: Choose appropriate field types for each content element
- Plan relationships: Design one-to-many and many-to-many connections
- Consider taxonomy: Determine categories, tags, and organizational structure
- Plan for scale: Design for growth (pagination, performance, limits)
- Document decisions: Explain tradeoffs and reasoning
Phase 4: Recommendations & Validation
- Generate recommendations: Provide specific, actionable guidance
- Prioritize changes: Organize by impact (quick wins vs. long-term)
- Explain tradeoffs: Help users understand limitations and workarounds
- Validate against best practices: Check against Webflow limitations and patterns
- Provide alternatives: Offer multiple approaches when applicable
- Create implementation roadmap: Break down into phases
Phase 5: Implementation Guidance
- Provide step-by-step instructions: Clear guidance for implementation
- Offer to assist: Suggest using other skills (cms-collection-setup, bulk-cms-update)
- Document structure: Recommend documentation for team reference
- Suggest testing approach: Guide on how to validate changes
- Plan for migration: If refactoring, provide migration strategy
Collection Architecture
When to Use CMS vs Static
Use CMS when:
- Content updates frequently (weekly or more)
- Multiple similar items (blog posts, products, team members, projects)
- Non-technical users need to edit content
- Content needs filtering/sorting on the frontend
- Same content appears on multiple pages (author bios, product features)
- Content follows a consistent structure across items
- You need to dynamically generate pages
Use Static when:
- Content rarely changes (annual updates or less)
- Unique one-off sections (about page hero, homepage special features)
- Complex custom layouts per item that don’t follow patterns
- No need for dynamic filtering or search
- Content is highly customized and doesn’t share structure
- Performance is critical and content doesn’t change
- You need complete design flexibility per section
Hybrid Approach:
- Static pages with CMS-driven sections (e.g., static homepage with CMS testimonials)
- CMS for recent content, static archives for old content
- Static landing pages, CMS for subpages
Field Type Selection
| Content Type | Recommended Field | Notes | Character Limits |
|---|---|---|---|
| Short text | Plain Text | Titles, names, slugs | Max 256 chars |
| Long text (no formatting) | Plain Text (long) | Descriptions, excerpts | Unlimited |
| Formatted content | Rich Text | Blog content, bios, articles | Unlimited |
| Single image | Image | Photos, thumbnails, headers | 4MB max per image |
| Multiple images | Multi-image | Galleries, product photos | Up to 25 images |
| File downloads | File | PDFs, documents, downloads | 4MB max per file |
| Yes/No values | Switch | Featured flags, visibility toggles | Boolean |
| Single choice | Option | Status, type, category | Unlimited options |
| Date/time | Date/Time | Publish dates, events, deadlines | ISO 8601 format |
| Link to one item | Reference | Author â Post, Category â Post | One item |
| Link to multiple items | Multi-reference | Post â Tags, Post â Related Posts | Multiple items |
| External URL | Link | Social links, external resources | Max 2048 chars |
| Numeric values | Number | Prices, ratings, order, counts | Integer or decimal |
| Phone numbers | Phone | Contact numbers | E.164 format |
| Email addresses | Contact emails | Valid email format | |
| Color values | Color | Theme colors, accents, brand colors | Hex format |
| Video embeds | Video | YouTube, Vimeo embeds | Embed URL |
Field Type Decision Tree
Need to store:
âââ Text?
â âââ Short (â¤256 chars)? â Plain Text
â âââ Long + Formatting? â Rich Text
â âââ Long + No Formatting? â Plain Text (long)
âââ Media?
â âââ Single image? â Image
â âââ Multiple images? â Multi-image
â âââ Video? â Video
â âââ File download? â File
âââ Choice/Selection?
â âââ Yes/No? â Switch
â âââ One option? â Option
â âââ Link to item? â Reference/Multi-reference
âââ Structured data?
â âââ Number? â Number
â âââ Date/Time? â Date/Time
â âââ Phone? â Phone
â âââ Email? â Email
â âââ URL? â Link
âââ Visual?
âââ Color? â Color
Relationship Patterns
One-to-Many (Reference Field)
Example: Posts â Author
Authors Collection:
âââ name (Text, required)
âââ slug (Text, required)
âââ bio (Rich Text)
âââ photo (Image)
âââ title (Text) - job title
âââ email (Email)
âââ social-links (Link)
Posts Collection:
âââ title (Text, required)
âââ slug (Text, required)
âââ content (Rich Text)
âââ author (Reference â Authors) â Each post has ONE author
Display: On post page, access author.name, author.photo, author.bio
Filtering: Can filter posts by specific author
Advantages:
- â Centralized author data (update once, reflects everywhere)
- â Easy to maintain consistency
- â Can create author profile pages showing all their posts
- â Efficient (one reference per post)
Use cases:
- Blog posts â Author
- Products â Brand
- Events â Venue
- Projects â Client
- Testimonials â Customer
Many-to-Many (Multi-Reference)
Example: Posts â Tags
Tags Collection:
âââ name (Text, required)
âââ slug (Text, required)
âââ description (Plain Text)
âââ color (Color) - optional visual grouping
Posts Collection:
âââ title (Text, required)
âââ slug (Text, required)
âââ content (Rich Text)
âââ tags (Multi-Reference â Tags) â Each post has MANY tags
Display: On post page, loop through tags to show all tags
Filtering: Can filter posts by specific tag
Advantages:
- â Flexible content organization
- â Cross-linking related content
- â Better SEO (topic clustering)
- â Enhanced user navigation
Limitations:
- â ï¸ Max 5 multi-reference fields per collection
- â ï¸ Can only filter by ONE multi-reference value at a time in collection lists
- â ï¸ Cannot sort by referenced field values
- â ï¸ Each reference = additional query (impacts performance)
Workarounds for multiple tag filtering:
- Create combined tags (e.g., “vegan-gluten-free”)
- Use Finsweet CMS Filter for client-side filtering
- Create separate filtered collection lists for common combinations
- Use custom code with Webflow API
Use cases:
- Blog posts â Tags
- Products â Features
- Projects â Technologies
- Recipes â Ingredients
- Courses â Topics
Self-Reference (Nested Collections)
Example: Categories with subcategories
Categories Collection:
âââ name (Text, required)
âââ slug (Text, required)
âââ description (Plain Text)
âââ parent (Reference â Categories) â Self-reference for hierarchy
âââ level (Number) - 1, 2, 3 for display logic
Use cases:
- Categories with subcategories
- Menu items with sub-menu items
- Organizational hierarchy
- Product taxonomy
Advantages:
- â Flexible hierarchy
- â Unlimited depth (theoretically)
- â Easy to reorganize
Limitations:
- â ï¸ Complex to display nested levels in Webflow
- â ï¸ Max 2-3 levels recommended for practical implementation
- â ï¸ Requires custom logic for deep nesting
Alternative: Use Option field for simple 1-2 level categorization
Bidirectional Relationships
Example: Related Posts
Posts Collection:
âââ title (Text, required)
âââ slug (Text, required)
âââ content (Rich Text)
âââ related-posts (Multi-Reference â Posts) â Self-reference to other posts
Display: Show related posts at bottom of post page
Advantages:
- â Keeps users engaged longer
- â Better SEO (internal linking)
- â Flexible content connections
Challenges:
- â ï¸ Not truly bidirectional (A â B doesn’t automatically create B â A)
- â ï¸ Must manually maintain both directions if needed
- â ï¸ Can be time-consuming for content editors
Solutions:
- Use tags for automatic “related by tag” logic
- Manual curation for most important connections
- Hybrid: Manual + automated based on tags/category
Examples
Example 1: Planning New CMS Structure
User prompt:
I'm building a recipe site. How should I structure the CMS?
Step 1: Requirements Gathering
ð CMS Planning: Recipe Site
Let me ask a few questions to design the best structure:
1. **Content Volume**: How many recipes do you plan to have?
- Small (â¤50): Simple structure
- Medium (50-200): Moderate organization
- Large (200+): Advanced taxonomy needed
2. **Recipe Attributes**: What information will each recipe have?
- Basic: Name, ingredients, instructions, image
- Advanced: Prep time, cook time, difficulty, nutrition, dietary tags
3. **Organization Needs**: How will users find recipes?
- By meal type (breakfast, lunch, dinner)
- By cuisine (Italian, Mexican, Asian)
- By dietary restrictions (vegan, gluten-free, keto)
- By cooking method (baking, grilling, slow cooker)
- By ingredients (chicken, pasta, vegetables)
4. **Author Setup**: Single or multiple authors?
- Single: You manage all content
- Multiple: Team of recipe creators
5. **User Engagement**: What interactive features?
- Comments/reviews
- Ratings
- Save favorites
- Print recipe cards
Based on your answers, I'll design the optimal CMS architecture.
Step 2: After User Responds
ð Recommended CMS Architecture: Recipe Site
Based on your requirements (Medium volume, Multiple authors, Advanced filtering):
---
## Collections Needed: 4
### 1. Recipes (Main Content)
âââ name (Text, required) - "Homemade Pasta Carbonara"
âââ slug (Text, required) - "homemade-pasta-carbonara"
âââ description (Plain Text, 160 chars) - Brief summary for SEO
âââ featured-image (Image) - Hero image for detail page
âââ thumbnail-image (Image) - Smaller image for grid cards
âââ prep-time (Number, required) - Minutes of prep
âââ cook-time (Number, required) - Minutes of cooking
âââ total-time (Number) - Auto-calculated or manual
âââ servings (Number, required) - Number of servings
âââ difficulty (Option: Easy, Medium, Hard)
âââ ingredients (Rich Text, required) - Ingredient list with quantities
âââ instructions (Rich Text, required) - Step-by-step directions
âââ notes (Rich Text) - Cook's notes, tips, substitutions
âââ nutrition-info (Plain Text) - Calories, protein, etc.
âââ author (Reference â Authors, required)
âââ category (Reference â Categories, required) - Primary meal type
âââ cuisine (Reference â Cuisines) - Italian, Mexican, etc.
âââ dietary-tags (Multi-Reference â Dietary Tags) - Vegan, GF, etc.
âââ cooking-methods (Multi-Reference â Methods) - Baking, Grilling, etc.
âââ featured (Switch) - Highlight on homepage
âââ published-date (Date, required)
âââ view-count (Number) - Track popularity
**Total fields:** 22 fields
**Plan required:** CMS plan minimum (20 collections, 2000 items)
### 2. Authors
âââ name (Text, required)
âââ slug (Text, required)
âââ title (Text) - "Head Chef", "Recipe Developer"
âââ bio (Rich Text)
âââ photo (Image)
âââ specialty (Plain Text) - "Italian Cuisine", "Baking"
âââ social-instagram (Link)
âââ social-website (Link)
âââ email (Email)
**Purpose:** Reusable author information across all recipes
### 3. Categories
âââ name (Text, required) - "Breakfast", "Lunch", "Dinner", "Desserts"
âââ slug (Text, required)
âââ description (Plain Text)
âââ image (Image) - Category hero image
âââ color (Color) - Brand color for UI
âââ sort-order (Number) - Control display order
**Purpose:** Primary meal type classification
**Suggested Categories (8):**
- Breakfast & Brunch
- Appetizers & Snacks
- Lunch
- Dinner & Main Courses
- Side Dishes
- Salads
- Desserts & Sweets
- Drinks & Beverages
### 4. Cuisines
âââ name (Text, required) - "Italian", "Mexican", "Asian"
âââ slug (Text, required)
âââ description (Plain Text)
âââ flag-icon (Image) - Optional visual
**Purpose:** Filter by cuisine type
**Suggested Cuisines (12):**
- American, Italian, Mexican, Asian, Mediterranean, French, Indian, Thai,
Chinese, Japanese, Greek, Middle Eastern
### 5. Dietary Tags
âââ name (Text, required) - "Vegan", "Gluten-Free", "Keto"
âââ slug (Text, required)
âââ description (Plain Text)
âââ icon (Image) - Badge icon
âââ color (Color) - Badge color
**Purpose:** Multi-select dietary filters
**Suggested Tags (10):**
- Vegetarian, Vegan, Gluten-Free, Dairy-Free, Keto, Paleo, Low-Carb,
High-Protein, Nut-Free, Pescatarian
### 6. Cooking Methods
âââ name (Text, required) - "Baking", "Grilling", "Slow Cooker"
âââ slug (Text, required)
âââ description (Plain Text)
**Purpose:** Filter by cooking technique
**Suggested Methods (8):**
- Baking, Grilling, Slow Cooker, Instant Pot, Stovetop, No-Cook,
Air Fryer, Sous Vide
---
## Relationship Map
Recipe â Author (one-to-many) â Recipe â Category (one-to-many) â Recipe â Cuisine (one-to-many) â Recipe â Dietary Tags (many-to-many) â Recipe â Cooking Methods (many-to-many)
**Multi-reference count:** 2 fields (within 5-field limit â
)
---
## Recommended Page Structure
### 1. Homepage (/)
- Hero section with featured recipe
- Category cards (8 categories)
- Latest recipes (collection list, 6 items)
- Popular recipes (sorted by view-count)
- Call-to-action
### 2. Recipes Index (/recipes)
- Collection list showing all recipes
- Filter sidebar:
- Category (tabs or dropdown)
- Cuisine (multi-select)
- Dietary tags (checkboxes)
- Cooking time (< 30 min, 30-60 min, 60+ min)
- Difficulty (easy, medium, hard)
- Pagination (12 recipes per page)
- Search bar (Finsweet CMS Filter)
### 3. Recipe Detail (/recipes/[slug])
- Hero image + title
- Prep/cook/total time + servings
- Difficulty badge + dietary badges
- Ingredients list
- Step-by-step instructions
- Author card with bio
- Related recipes (same category or tags)
- Print button
### 4. Category Pages (/category/[slug])
- Category hero image + description
- Filtered recipes by category
- Breadcrumbs: Home > Recipes > [Category]
- Related categories
### 5. Cuisine Pages (/cuisine/[slug])
- Cuisine description + flag
- Filtered recipes by cuisine
- Popular cuisines sidebar
### 6. Author Profiles (/authors/[slug])
- Author photo + bio
- Author's recipes (collection list)
- Social links
- Author stats (total recipes, join date)
### 7. Dietary Filter Pages (/diet/[slug])
- Dietary tag description
- Filtered recipes by tag
- Related dietary tags
---
## SEO Optimization
### Collection Template SEO
Recipe Detail Page (/recipes/[slug]):
- SEO Title: {{recipe.name}} | Your Site Name
- Meta Description: {{recipe.description}}
- OG Image: {{recipe.featured-image}}
- Schema: Recipe structured data (JSON-LD)
### Structured Data (Recipe Schema)
```json
{
"@context": "https://schema.org/",
"@type": "Recipe",
"name": "{{recipe.name}}",
"image": "{{recipe.featured-image}}",
"author": {
"@type": "Person",
"name": "{{recipe.author.name}}"
},
"datePublished": "{{recipe.published-date}}",
"description": "{{recipe.description}}",
"prepTime": "PT{{recipe.prep-time}}M",
"cookTime": "PT{{recipe.cook-time}}M",
"totalTime": "PT{{recipe.total-time}}M",
"recipeYield": "{{recipe.servings}} servings",
"recipeIngredient": [...],
"recipeInstructions": [...]
}
Benefits:
- Rich snippets in Google search
- Better CTR (images, ratings, cook time in results)
- Voice search optimization
- Better recipe discovery
Performance Optimization
For 50-200 Recipes:
1. Pagination Strategy
Recipes Index page:
- Limit: 12 recipes per page
- Enable Webflow pagination
- "Load More" button for smoother UX
2. Image Optimization
Thumbnail: 400x300px (grid cards)
Featured: 1200x800px (detail pages)
Format: WebP when possible
Loading: lazy for below-fold images
3. Reference Field Strategy
Display only needed fields:
- Author name + photo (don't bind entire author object)
- Category name + color (skip unused fields)
- Each reference = query, so minimize bindings
4. Collection List Limits
Homepage: 6 featured recipes
Category pages: 12 recipes per page
Author pages: 12 recipes per page
Related recipes: 3-4 max
Content Strategy
Phase 1: Foundation (Weeks 1-2)
- Create Authors (3-5 authors)
- Create Categories (8 categories)
- Create Cuisines (10-12 cuisines)
- Create Dietary Tags (8-10 tags)
- Create Cooking Methods (6-8 methods)
Phase 2: Initial Content (Weeks 3-4)
- Add 20-30 flagship recipes
- Ensure even distribution across categories
- High-quality photos for all
- Complete metadata (all fields filled)
Phase 3: Growth (Ongoing)
- Add 5-10 recipes per week
- Monitor popular recipes (view-count)
- Update seasonal recipes
- Maintain content quality
Implementation Roadmap
Week 1: Setup
- Create all 6 collections with fields
- Define relationships (references)
- Set required fields
- Add help text for editors
Week 2: Content Structure
- Populate support collections (Authors, Categories, etc.)
- Create test recipes (3-5) with all fields
- Validate data structure
Week 3: Pages
- Build homepage layout
- Create recipe index page with filters
- Design recipe detail template
- Build category/cuisine/author pages
Week 4: Polish
- Implement SEO (titles, descriptions, schema)
- Add breadcrumbs and navigation
- Optimize images
- Test pagination and filters
Week 5: Launch
- Add 20-30 initial recipes
- Final QA testing
- Publish site
- Monitor performance
Quick Wins
1. Use View Count for “Popular Recipes”
- Add Number field: view-count
- Sort collection list by view-count (descending)
- Show “Most Popular” section on homepage
2. Auto-Calculate Total Time
- Option 1: Manual (editors enter prep + cook)
- Option 2: Display logic (show prep + cook sum in UI)
- Best for: Performance (no extra calculation)
3. Print-Friendly Recipe Cards
- Add “Print Recipe” button
- Use custom code to format for printing
- Include: Ingredients, Instructions, Image
- Exclude: Navigation, Ads, Comments
4. Related Recipes Logic
Automatic (no manual curation):
- Filter by same category
- Filter by shared dietary tags
- Sort by published-date (recent first)
- Limit to 3-4 recipes
Ready to implement? I can help you:
- Create these collections using cms-collection-setup skill
- Add initial content using bulk-cms-update skill
- Build the page structure
- Optimize for SEO and performance
Which would you like to start with?
### Example 2: Optimizing Existing CMS
**User prompt:**
My collection list is slow with 500+ items. How do I optimize?
**Response:**
â¡ CMS Performance Optimization
Analyzing your performance issue with 500+ items…
Current Issue Diagnosis
Problem: Loading 500+ items on a single page Impact:
- Slow page load (5-10 seconds or more)
- High bounce rate
- Poor SEO rankings
- Bad user experience
- Server stress
Root Causes:
- Too many items loaded at once
- Possibly too many reference field lookups
- Large unoptimized images
- No pagination or lazy loading
- Complex nested collection lists
Immediate Fixes (High Impact, Low Effort)
1. Implement Pagination â¡ CRITICAL
Current: Loading all 500+ items Fix: Limit to 12-20 items per page
In Webflow Designer:
- Select your Collection List
- Settings > Limit items: 20
- Enable “Paginate items”
- Style pagination controls
Impact: 95% faster page load â Time to implement: 5 minutes Effort: Low
2. Optimize Image Loading ð¼ï¸
Current: Full-resolution images loading immediately Fix: Use proper image sizes + lazy loading
Implementation:
Thumbnail images in grid:
- Size: 400x300px (not full resolution)
- Format: WebP (smaller file size)
- Loading: lazy (below fold images)
In Collection List Image settings:
- Set custom size: 400x300
- Enable lazy loading
- Use srcset for responsive images
Impact: 60-70% faster load â Time to implement: 15 minutes Effort: Low
3. Reduce Visible Reference Fields ð
Current: Binding all reference fields Fix: Only display what you actually need
Check your Collection List:
â Bad: Binding entire author object
{
author.name,
author.bio,
author.photo,
author.email,
author.social-links
}
â
Good: Bind only displayed fields
{
author.name,
author.photo
}
Why: Each reference field = separate database query Impact: 30-40% faster â Time to implement: 10 minutes Effort: Low
Medium-Term Solutions (Moderate Impact, Moderate Effort)
4. Filter at Collection Level
Current: Loading all items, then hiding with conditional visibility Fix: Use collection list filters
Example:
Instead of:
- Load all 500 posts
- Hide if published-date > today (conditional)
Do this:
- Collection List Filter: published-date ⤠today
- Only loads matching items
Implementation:
- Collection List Settings
- Add Filter: [field] [condition] [value]
- Combine multiple filters with AND/OR
Impact: 50% faster + cleaner â Time to implement: 30 minutes Effort: Medium
5. Implement “Load More” Button
Alternative to pagination: Smoother UX
Options: a) Webflow native: Pagination with “Load More” styling b) Finsweet: CMS Load plugin (free) c) Custom code: AJAX load more
Benefits:
- Users stay on same page (no page refresh)
- Better for mobile UX
- Smooth scrolling experience
Impact: Better UX, same performance as pagination â Time to implement: 1-2 hours Effort: Medium
6. Create Filtered Views
Instead of: One giant “All Posts” page Create: Multiple filtered pages
Example:
/blog â Recent posts (20 items)
/blog/featured â Featured posts only (10 items)
/blog/category/tech â Tech category (filtered)
/blog/archive â Older posts with pagination
Benefits:
- Faster individual pages
- Better SEO (targeted pages)
- Easier navigation
- Reduced cognitive load
Impact: Significant UX improvement â Time to implement: 2-3 hours Effort: Medium
Long-Term Solutions (High Impact, High Effort)
7. Archive Old Content
Strategy: Dynamic recent + static archives
Implementation:
Recent Content (Dynamic CMS):
- Last 50-100 posts
- Full dynamic filtering
- Fast performance
Older Content (Static):
- Archive pages for older posts
- Yearly/quarterly archives
- Still accessible but static HTML
- Rarely updated
When to use:
- 1000+ items
- Clear separation between recent/old content
- Archive content rarely accessed
Impact: Maintains fast performance at scale â Time to implement: 1-2 weeks Effort: High
8. Denormalize Data
Problem: Too many reference lookups Solution: Copy frequently-accessed data
Example:
Current (Normalized):
Post â Author (reference)
Display: {{post.author.name}}
= 2 queries (post + author)
Denormalized:
Post has author-name field (text)
Display: {{post.author-name}}
= 1 query (just post)
When to use:
- Reference data rarely changes (author names)
- Performance is critical
- You can maintain consistency
Tradeoff: â ï¸ Must update in multiple places if data changes
Impact: 40-50% faster for reference-heavy pages â Time to implement: Varies (requires data migration) Effort: High
9. Implement Client-Side Filtering
Use: Finsweet CMS Filter (free)
Benefits:
- Load once, filter instantly
- No page refreshes
- Multiple simultaneous filters
- Search functionality
- Better UX
Best for:
- 100-500 items
- Users need advanced filtering
- Desktop-first audience
Limitation: All items loaded initially (use with pagination)
Impact: Instant filtering â Time to implement: 2-4 hours Effort: Medium-High
Comprehensive Optimization Checklist
Immediate Actions (Today):
- Limit collection list to 20 items
- Enable pagination
- Optimize image sizes (400×300 for thumbnails)
- Enable lazy loading on images
- Remove unused reference field bindings
This Week:
- Add collection list filters (date, category)
- Create filtered category pages
- Test performance on mobile
- Implement “Load More” if desired
- Audit all collection lists on site
This Month:
- Consider Finsweet CMS Filter for advanced filtering
- Create archive structure if >1000 items
- Optimize all images (WebP format)
- Review and optimize reference relationships
- Set up performance monitoring
Performance Benchmarks
Before Optimization:
- Load time: 8-12 seconds
- Items loaded: 500+
- Images: Full resolution
- References: All fields
After Quick Fixes (Pagination + Images):
- Load time: 1-2 seconds â
- Items loaded: 20
- Images: Optimized thumbnails
- References: Only displayed fields
After Full Optimization:
- Load time: <1 second â
- Lighthouse score: 90+ â
- Smooth pagination
- Instant client-side filtering
Testing Your Changes
Before deploying:
-
Test on staging:
- Publish to staging domain first
- Verify pagination works
- Check image quality
- Test all filters
-
Performance testing:
- Use Google PageSpeed Insights
- Test on mobile (3G/4G)
- Check Lighthouse scores
- Verify Core Web Vitals
-
User testing:
- Navigate through pages
- Test search/filter
- Check mobile experience
- Verify no broken links
-
Monitor after launch:
- Watch analytics (bounce rate, time on page)
- Check error logs
- Monitor load times
- Gather user feedback
Quick Implementation Priority
Priority 1 (Do First):
- Pagination (20 items per page)
- Optimize images (thumbnails)
- Remove unused reference bindings
Priority 2 (This Week): 4. Add lazy loading 5. Create filtered views 6. Implement “Load More” option
Priority 3 (If Needed): 7. Finsweet CMS Filter 8. Archive old content 9. Denormalize critical data
Would you like me to walk you through implementing any of these optimizations? I can provide:
- Step-by-step Webflow Designer instructions
- Custom code snippets
- Testing checklist
- Performance monitoring setup
Let me know which optimization you’d like to tackle first!
### Example 3: Troubleshooting Relationships
**User prompt:**
My reference fields aren’t showing up on the page. What’s wrong?
**Response:**
ð Troubleshooting: Reference Fields Not Displaying
Let me help you diagnose and fix this issue.
Common Causes & Solutions
Issue 1: Reference Field Not Bound to Element
Symptom: Empty space where data should be Diagnosis: Element exists but has no data binding
Fix:
- Select the element (text, image, etc.)
- Settings panel > Get text/image from [Collection Item]
- Select your reference field
- Choose the specific field to display
Example:
Element: Text Block
Binding: Blog Post > Author (reference) > Name
Correct path:
Collection Item > author > name
Issue 2: Reference Field Has No Value
Symptom: Some items show data, others don’t Diagnosis: Not all collection items have the reference assigned
Fix:
- Go to CMS Collections
- Open your collection
- Check items that aren’t displaying
- Ensure reference field is populated
Prevention:
- Make reference fields “Required” if critical
- Provide default/fallback content
Issue 3: Wrong Collection Context
Symptom: Reference field not appearing in dropdown Diagnosis: Element is outside collection list context
Fix:
â Wrong:
<div>
<text>Author: {{author.name}}</text> â No collection context
</div>
â
Correct:
<Collection List - Posts>
<Collection Item>
<text>Author: {{author.name}}</text> â Inside collection context
</Collection Item>
</Collection List>
Issue 4: Multi-Reference Display Error
Symptom: Only showing first item or nothing Diagnosis: Multi-reference needs nested collection list
Fix:
For Multi-Reference field (Post â Tags):
â Wrong: Direct binding
<text>Tags: {{post.tags}}</text>
â
Correct: Nested collection list
<Collection List - Posts>
<Collection Item - Post>
<Collection List - Get Items from Post > Tags>
<Collection Item - Tag>
<text>{{tag.name}}</text>
</Collection Item>
</Collection List>
</Collection Item>
</Collection List>
Issue 5: Deleted Referenced Item
Symptom: Reference field shows nothing despite being assigned Diagnosis: Referenced item was deleted from other collection
Fix:
- Go to referring collection
- Check reference field assignments
- Re-assign to existing items
- Or recreate deleted item
Prevention:
- Be careful when deleting referenced items
- Check “Used in X items” before deleting
- Archive instead of delete if possible
Issue 6: Collection Not Published
Symptom: Works in designer, not on live site Diagnosis: Referenced collection items are drafts
Fix:
- Go to referenced collection (e.g., Authors)
- Find draft items
- Publish them
- Republish main site
Check:
CMS Collections > Authors
- Look for "Draft" badge
- Publish all needed items
- Items must be published to display via reference
Step-by-Step Diagnostic
Step 1: Verify Collection Structure
Check in CMS:
1. Does the reference field exist?
2. Is it configured correctly (Reference or Multi-Reference)?
3. Is it pointing to the right collection?
Step 2: Verify Data Exists
Check collection items:
1. Open an item that should display
2. Check if reference field is populated
3. Verify referenced item exists and is published
Step 3: Verify Page Structure
Check in Designer:
1. Is element inside Collection List?
2. Is Collection List connected to correct collection?
3. Is element binding correct path?
Step 4: Test in Designer
In Designer:
1. Click Collection List
2. Set preview mode: "Item 1"
3. Cycle through items
4. Check if data appears
If it works in Designer but not live:
â Publish issue (republish site)
Testing Reference Fields
Manual Test Checklist
- Create test item with reference populated
- Preview in Designer
- Check element binding path
- Publish and view live
- Verify all items display correctly
- Check items without references (should fail gracefully)
Common Binding Patterns
Single Reference (Author):
Collection List: Posts
Collection Item: Post
Element: Text Block
Binding: Get text from Post > author > name
Multi-Reference (Tags):
Collection List: Posts
Collection Item: Post
Nested Collection List: Get items from Post > tags
Collection Item: Tag
Element: Text Block
Binding: Get text from Tag > name
Self-Reference (Related Posts):
Collection List: Posts
Collection Item: Post (current)
Nested Collection List: Get items from Post > related-posts
Collection Item: Post (related)
Element: Text Block
Binding: Get text from Post > title
Prevention Tips
Best Practices:
-
Make critical references required
- Required: Yes for author, category
- Optional: Yes for tags, related items
-
Provide default content
- If reference is empty, show “Uncategorized”
- Use conditional visibility for optional references
-
Test with incomplete data
- Create test items with missing references
- Ensure graceful fallback
-
Document reference structure
- Create guide for content editors
- Explain which fields are required
- Show how to assign references
-
Use descriptive field names
- â “ref-1”, “link”
- â “author”, “primary-category”, “related-posts”
Quick Fixes by Symptom
| Symptom | Most Likely Cause | Quick Fix |
|---|---|---|
| Nothing shows | Not bound | Bind element to reference field |
| Some items empty | Reference not assigned | Assign reference in CMS |
| Works in designer, not live | Items not published | Publish referenced collection items |
| Only first tag shows | Using text binding on multi-ref | Use nested collection list |
| Shows random data | Wrong collection context | Check collection list nesting |
| Broken after deletion | Referenced item deleted | Re-assign or recreate item |
Would you like me to walk through your specific setup to diagnose the exact issue? I can:
- Review your collection structure
- Check your reference field configuration
- Analyze your page layout
- Test your data bindings
- Provide custom troubleshooting
Let me know what you’d like me to check!
## Guidelines
### Phase 1: Discovery Best Practices
**Always Start With:**
1. **Identify plan limits** - Use `sites_get` to check collection/item limits
2. **Analyze existing structure** - List collections before recommending changes
3. **Understand content volume** - Check item counts to assess scale
4. **Review current pages** - See how content is currently displayed
5. **Ask clarifying questions** - Don't assume requirements
**Plan Limits Reference:**
Starter Plan:
- Collections: 1
- Items per collection: 50
- CMS pages: 50
Basic Plan:
- Collections: 2
- Items total: 200
- CMS pages: 150
CMS Plan:
- Collections: 20
- Items total: 2,000
- CMS pages: 2,000
Business Plan:
- Collections: 40
- Items total: 10,000
- CMS pages: 10,000
Enterprise Plan:
- Custom limits
**Key Questions to Ask:**
1. "What content needs to be managed?" (identify collections)
2. "Who will update the content?" (determine complexity level)
3. "How will content be displayed?" (affects fields and relationships)
4. "What's the expected content volume?" (plan for scale)
5. "Are there any special requirements?" (unique features, integrations)
### Phase 2: Field Selection Best Practices
**Field Type Selection Matrix:**
**For Text Content:**
- **<50 characters:** Plain Text (single line)
- **50-256 characters:** Plain Text (multi-line)
- **Need formatting:** Rich Text
- **Pure data (no display):** Plain Text (validation enabled)
**For Relationships:**
- **One parent:** Reference (e.g., Post â Author)
- **Multiple parents:** Multi-Reference (e.g., Post â Tags)
- **Self-referencing:** Reference to same collection (e.g., Category â Parent Category)
**For Media:**
- **Hero images:** Image field (1 image)
- **Galleries:** Multi-image field (up to 25 images)
- **Documents:** File field (PDFs, docs)
- **Videos:** Video field (YouTube/Vimeo embeds)
**For Metadata:**
- **Dates:** Date/Time field
- **Numbers:** Number field (prices, counts, ratings)
- **Colors:** Color field (brand colors, theme colors)
- **Switches:** Boolean field (featured, published, active)
**Field Naming Conventions:**
â Good Names:
- published-date (descriptive, hyphenated)
- author (clear purpose)
- main-image (specifies which image)
- post-summary (explains use case)
â Bad Names:
- date1 (unclear which date)
- img (which image?)
- text (what kind of text?)
- field1 (no meaning)
**Required vs Optional:**
Make REQUIRED:
- name (unique identifier)
- slug (URL generation)
- primary relationships (author, category)
- publish date (for sorting)
Make OPTIONAL:
- tags (not always applicable)
- secondary images
- advanced metadata
- related items
### Phase 3: Relationship Design Best Practices
**One-to-Many Guidelines:**
Use when:
- Each item has exactly ONE parent
- Parent data is reused across many items
- You want centralized data management
Examples: â Post â Author (each post has one author) â Product â Brand (each product has one brand) â Event â Venue (each event has one venue)
Don’t use when: â Item can have multiple parents (use multi-reference) â Relationship is temporary (consider option field) â Data is simple and rarely changes (use option field instead)
**Many-to-Many Guidelines:**
Use when:
- Items can have multiple relationships
- Relationships need to be managed separately
- You want flexible cross-linking
Examples: â Post â Tags (posts have many tags, tags apply to many posts) â Product â Features (products have many features, features apply to many products) â Course â Topics (courses cover many topics, topics span many courses)
Remember: â ï¸ Max 5 multi-reference fields per collection â ï¸ Can only filter by ONE multi-reference at a time â ï¸ Cannot sort by referenced field values â ï¸ Performance impact (more queries)
**Self-Reference Guidelines:**
Use when:
- Building hierarchies (categories, menu structure)
- Related items from same collection
- Organizational trees
Implementation:
- Add Reference field pointing to same collection
- Name it clearly: parent-category, related-posts
- Limit depth to 2-3 levels for practical display
- Consider adding “level” number field for easier filtering
Example Structure: Categories: âââ Web Development (level 1, parent: null) â âââ Frontend (level 2, parent: Web Development) â âââ Backend (level 2, parent: Web Development) âââ Design (level 1, parent: null)
### Phase 4: Architecture Patterns
**Common Collection Patterns:**
**1. Blog Architecture:**
Minimal (1 collection):
- Blog Posts
Standard (3 collections):
- Blog Posts
- Authors
- Categories
Advanced (5+ collections):
- Blog Posts
- Authors
- Categories
- Tags
- Topics/Series
**2. E-commerce Architecture:**
Minimal (1 collection):
- Products
Standard (4 collections):
- Products
- Categories
- Brands
- Features/Specifications
Advanced (7+ collections):
- Products
- Categories
- Brands
- Features
- Reviews
- Collections (curated product groups)
- Related Products
**3. Portfolio Architecture:**
Minimal (1 collection):
- Projects
Standard (3 collections):
- Projects
- Clients
- Services/Categories
Advanced (5+ collections):
- Projects
- Clients
- Services
- Team Members
- Technologies Used
**4. Directory Architecture:**
Minimal (1 collection):
- Listings
Standard (4 collections):
- Listings
- Categories
- Locations
- Owners/Managers
Advanced (6+ collections):
- Listings
- Categories
- Subcategories
- Locations (hierarchical)
- Amenities/Features
- Reviews/Ratings
### Phase 5: Performance Optimization
**Pagination Strategy:**
Content Volume â Items Per Page:
- 0-50 items: No pagination needed
- 50-100 items: 20 items per page
- 100-500 items: 15-20 items per page
- 500-1000 items: 12-15 items per page
- 1000+ items: 10-12 items per page + advanced filtering
**Image Optimization:**
Usage â Recommended Size:
- Thumbnail (grid cards): 400x300px
- Featured image (hero): 1200x800px
- Gallery images: 800x600px
- Background images: 1920x1080px
Format Priority:
- WebP (best compression, modern browsers)
- JPEG (photos, complex images)
- PNG (transparency needed, simple graphics)
- SVG (logos, icons, simple graphics)
**Reference Field Strategy:**
Optimization Levels:
Level 1 – Display Only What’s Needed: â Binding entire author object: {{author}} â Binding specific fields: {{author.name}}, {{author.photo}}
Level 2 – Denormalize Critical Data: Instead of: Post â Author.name (2 queries) Store: Post.author-name (1 query) When: Performance critical + data rarely changes
Level 3 – Lazy Load Related Content: Show main content immediately Load related items on interaction (click, scroll) Reduces initial page load
**Collection List Optimization:**
Best Practices:
-
Filter at Collection Level: â Use native collection list filters â Load all items then hide with conditionals
-
Limit Items: â Set reasonable limit (12-20 items) â Load unlimited items
-
Optimize Nested Lists: â Limit nested collection lists to 3-5 items â Nest multiple unlimited lists
-
Use Conditional Loading: â Load content based on viewport â Load everything upfront
-
Implement Pagination: â Enable Webflow pagination or “Load More” â Infinite scroll with all items
### Phase 6: SEO Best Practices
**Collection Template SEO:**
Required Fields:
- SEO Title (dynamic from item name)
- Meta Description (dynamic from summary/description)
- OG Image (dynamic from featured image)
- Canonical URL (automatic)
Recommended: 5. Schema.org structured data (JSON-LD) 6. Open Graph tags (Facebook/LinkedIn) 7. Twitter Card tags 8. Alt text for all images
**Slug Best Practices:**
â Good Slugs:
- webflow-cms-best-practices
- ultimate-guide-to-seo
- 2026-web-design-trends
â Bad Slugs:
- Post1
- new-post-copy-3
- untitled-entry
Rules:
- Lowercase only
- Hyphens (not underscores)
- No special characters
- Descriptive (include keywords)
- Max 50-60 characters
**Structured Data Implementation:**
Common Types:
Blog Post (Article schema):
- headline, author, datePublished, image
- Use for: Blog posts, news articles
Product (Product schema):
- name, description, price, availability, image
- Use for: E-commerce products
Event (Event schema):
- name, startDate, location, organizer
- Use for: Events, webinars, conferences
Recipe (Recipe schema):
- name, ingredients, instructions, cookTime
- Use for: Recipe sites, food blogs
Local Business (LocalBusiness schema):
- name, address, phone, openingHours
- Use for: Directories, business listings
### Phase 7: Editorial Workflow
**Content Editor Guidelines:**
**Field Usage Documentation:**
Create guide for each collection:
Example – Blog Posts Collection:
-
Name* (required)
- Post title
- Keep under 60 characters for SEO
- Make it catchy and descriptive
-
Slug* (required)
- Auto-generated from name
- Can be edited for SEO optimization
- Use hyphens, lowercase only
-
Post Summary
- Brief description (160 characters max)
- Used for: Grid cards, meta description, social sharing
- Make it compelling – this is what users see first
-
Featured Image*
- Hero image for post
- Minimum size: 1200x800px
- Always add alt text for accessibility
-
Author*
- Select from Authors list
- Can’t find author? Ask admin to create in Authors collection
… (document all fields)
**Required Field Checklist:**
Before Publishing: â¡ Name filled â¡ Slug set (no generic slugs like “untitled”) â¡ Summary written (compelling, 160 chars) â¡ Featured image uploaded with alt text â¡ Author assigned â¡ Category selected â¡ Published date set â¡ Content proofread â¡ Links tested â¡ Images optimized â¡ SEO reviewed
**Draft â Published Workflow:**
-
Create as Draft:
- Fill required fields minimum
- Save to preserve work
-
Complete Content:
- Write/upload all content
- Add images with alt text
- Set metadata
-
Internal Review:
- Proofread
- Check formatting
- Test links
- Verify references
-
Publish:
- Set published date
- Change from draft to published
- Verify on live site
- Share/promote
-
Ongoing:
- Update as needed
- Monitor performance
- Refresh outdated content
- Archive if no longer relevant
### Phase 8: Migration Strategy
**When Refactoring Existing CMS:**
**Assessment Phase:**
-
Audit Current Structure:
- List all collections
- Count items per collection
- Map relationships
- Identify problems
-
Design New Structure:
- Plan improvements
- Design new collections
- Define new relationships
- Create migration plan
-
Validate Approach:
- Test with sample data
- Verify relationships work
- Check performance
- Get stakeholder approval
**Migration Approaches:**
**Approach 1: Parallel Build (Safest)**
- Build new collections alongside old
- Migrate content gradually
- Test thoroughly
- Switch pages to new collections
- Archive old collections
Pros: â No downtime â Easy rollback â Test before fully committing
Cons: â Temporarily doubled content â Longer timeline â Must manage both systems temporarily
**Approach 2: Direct Migration (Faster)**
- Create new collections
- Export data from old collections
- Transform data format
- Import to new collections
- Update pages to use new collections
- Delete old collections
Pros: â Faster completion â Clean cutover â No duplicate content
Cons: â Higher risk â Potential downtime â Harder to rollback
**Approach 3: Hybrid (Recommended)**
- Create new structure
- Migrate in batches (50-100 items)
- Test each batch
- Update pages incrementally
- Monitor for issues
- Complete full migration
Pros: â Balanced risk/speed â Can catch issues early â Incremental testing
Cons: â Requires careful planning â More complex execution
### Phase 9: Troubleshooting Common Issues
**Issue: "Collection won't save"**
Possible causes:
- Required field empty
- Slug conflict (duplicate)
- Invalid characters in slug
- Reference pointing to deleted item
- Field validation failing
Diagnosis:
- Check for red highlighted fields
- Verify slug is unique
- Test without optional fields
- Check browser console for errors
Fix:
- Fill all required fields
- Change slug to be unique
- Remove special characters
- Re-assign references
- Contact Webflow support if persists
**Issue: "Reference field not showing options"**
Possible causes:
- Referenced collection has no items
- Referenced collection items not published
- Wrong collection selected in reference settings
- Browser cache issue
Fix:
- Create items in referenced collection first
- Publish all items in referenced collection
- Double-check reference field configuration
- Clear cache and refresh
**Issue: "Collection list showing wrong items"**
Possible causes:
- Wrong collection selected
- Filters configured incorrectly
- Limit set too low
- Items not published
- Wrong CMS locale selected
Diagnosis:
- Check collection list settings
- Review filter conditions
- Check item publish status
- Verify correct locale
Fix:
- Select correct collection
- Adjust or remove filters
- Increase limit
- Publish items
- Switch to correct locale
**Issue: "Pagination not working"**
Possible causes:
- Pagination not enabled
- Limit set equal to or greater than total items
- JavaScript conflict
- Custom code interfering
Fix:
- Enable pagination in collection list settings
- Set limit lower than total items (e.g., 20)
- Test with all custom code disabled
- Check for JavaScript errors in console
**Issue: "Multi-reference only showing first item"**
Cause: Wrong display method
Fix: Must use nested collection list: â Direct text binding â Collection List > Get items from [field] > Collection Item > Display
Example: <Collection List – Posts> <Collection Item – Post> Tags: <Collection List – Get items from Post > tags> <Collection Item – Tag> {{tag.name}} </Collection Item> </Collection List> </Collection Item> </Collection List>
### Phase 10: Advanced Techniques
**Conditional Display Based on References:**
Use Case: Show different layouts based on category
Implementation:
- Add conditional visibility to elements
- Condition: Category = “Video Posts”
- Show video player layout
- Condition: Category = “Image Posts”
- Show image gallery layout
Limitation: Can only check one value at a time Alternative: Use option field with class name, apply class dynamically
**Scheduled Publishing:**
Implementation:
- Add “Published Date” field (Date/Time)
- In collection list settings:
- Add filter: Published Date ⤠Current Date
- Set future dates on items to schedule
Benefits:
- No plugins needed
- Native Webflow functionality
- Items auto-appear on set date
Limitation: Items exist but filtered, not truly unpublished
**Dynamic Sorting:**
Option 1: Manual Sort Order
- Add “Sort Order” number field
- Manually assign: 1, 2, 3, 4…
- Sort collection list by Sort Order (ascending)
Option 2: Auto Sort by Engagement
- Add “View Count” number field
- Increment on page view (requires custom code)
- Sort by View Count (descending) for “Popular” lists
Option 3: Date-Based Sorting
- Sort by Published Date (descending) for “Recent”
- Sort by Created Date for “Chronological”
- Combine with filters for “This Month’s Top Posts”
**Multi-Lingual Content:**
Approach 1: Separate Collections per Language
- Blog Posts EN
- Blog Posts ES
- Blog Posts FR
Pros: Simple, native Webflow Cons: Must duplicate structure, harder to maintain
Approach 2: Language Field + Filter
- Add “Language” option field (EN, ES, FR)
- Filter collection lists by language
- Use URL parameter or cookie for language switch
Pros: Single structure, easier to maintain Cons: All content in one collection
Approach 3: Webflow Localization (CMS Plan+)
- Use Webflow’s native localization
- Create secondary locales
- Translate CMS content per locale
Pros: Official solution, best SEO Cons: Requires CMS plan+, setup complexity
**Search Functionality:**
Option 1: Native (Limited)
- Use filter inputs on collection lists
- Basic keyword matching only
- No fuzzy search or relevance ranking
Option 2: Finsweet CMS Filter (Free)
- Client-side search and filtering
- Works with existing collection lists
- Multiple simultaneous filters
- Requires JavaScript
Option 3: Algolia/Custom (Advanced)
- Server-side search with AI
- Typo-tolerance, synonyms
- Fast and scalable
- Requires integration, costs money
Recommendation:
- <100 items: Native or Finsweet
- 100-1000 items: Finsweet
- 1000+ items: Consider Algolia
## Production Checklist
Before launching CMS-driven site:
**Structure:**
- [ ] All collections created with proper field types
- [ ] Required fields set appropriately
- [ ] Help text added for content editors
- [ ] Relationships configured correctly
- [ ] Self-references working properly
- [ ] Validation rules set on text fields
**Content:**
- [ ] Test items created for all collections
- [ ] All reference fields populated in test items
- [ ] Images optimized (size, format, alt text)
- [ ] Slugs follow naming conventions
- [ ] Published dates set on items
- [ ] Draft items clearly marked
**Pages:**
- [ ] Collection lists limited appropriately (12-20 items)
- [ ] Pagination enabled on large lists
- [ ] Filters configured correctly
- [ ] Multi-reference fields use nested collection lists
- [ ] Conditional visibility works as expected
- [ ] Empty states handled gracefully
**SEO:**
- [ ] Collection template has SEO title binding
- [ ] Meta descriptions bound to summary fields
- [ ] OG images bound to featured images
- [ ] Structured data implemented (if applicable)
- [ ] Alt text present on all images
- [ ] Slugs are SEO-friendly
**Performance:**
- [ ] Images lazy loading enabled
- [ ] Only displayed reference fields bound
- [ ] Collection lists use filters (not conditional hiding)
- [ ] Pagination prevents loading too many items
- [ ] Performance tested on mobile
- [ ] Lighthouse score >80
**Documentation:**
- [ ] Field usage guide created for editors
- [ ] Collection structure documented
- [ ] Relationship map created
- [ ] Publishing workflow defined
- [ ] Troubleshooting guide available
- [ ] Contact for technical support identified
**Testing:**
- [ ] All collection lists display correctly
- [ ] Pagination works
- [ ] Filters work
- [ ] Search works (if implemented)
- [ ] Reference fields display data
- [ ] Multi-reference lists show all items
- [ ] Empty states handled
- [ ] Mobile experience tested
- [ ] Cross-browser tested
- [ ] Performance benchmarked
**Launch:**
- [ ] Content editors trained
- [ ] Editorial calendar established
- [ ] Publishing workflow in place
- [ ] Monitoring setup (analytics, errors)
- [ ] Backup strategy defined
- [ ] Support plan in place