Theme Migration Guide
Guide to migrating themes between versions or from other platforms.
Migration Checklist
- Backup current theme
- Review breaking changes
- Update template syntax
- Update filter usage
- Test all pages
- Verify widgets work
- Check asset loading
- Test on staging
Common Migration Tasks
Template Updates
Update template syntax if needed:
<!-- Old -->
{% include 'snippet' %}
<!-- New -->
{% render 'snippet' %}
Filter Updates
Update deprecated filters:
<!-- Check filter documentation for updates -->
{{ value | updated_filter }}