Migrate Elementor to Bricks
Version: 2.1.0
Updated: 2026-08-04
Freshly updated: v2.1.0 adds design-token awareness: conversion writes now register the colors and typography they carry as named design tokens in Bricks' own global styles, and converted pages reference those tokens instead of carrying value copies. Reuse registered tokens instead of re-inlining raw values, and report the registration in the migration summary.
Converts Elementor-built WordPress pages to Bricks Builder. Reads Elementor's JSON widget tree from post meta, maps each widget to its closest Bricks element equivalent, generates a migration plan for approval, and writes clean Bricks JSON to the target pages. Use this skill whenever someone wants to move from Elementor to Bricks, rebuild Elementor pages in Bricks, or switch page builders from Elementor to Bricks.
What This Skill Does
Elementor and Bricks are both visual page builders, but they store content in fundamentally different formats — Elementor uses a nested JSON widget tree in _elementor_data, while Bricks uses a flat-ish JSON array in _bricks_page_content_2. This skill bridges that gap by reading every Elementor widget, understanding its purpose, and recreating it as the appropriate Bricks element. Both Elementor and Bricks are among the 16 page builders Respira reads and writes natively, so the extraction and injection run through the same builder-aware tooling Respira uses everywhere else.
Handles:
- Section/Column layouts → Bricks Section/Container elements
- Text Editor, Heading, Image, Video, Button widgets → native Bricks equivalents
- Icon, Icon Box, Image Box, Star Rating → Bricks icon and media elements
- Tabs, Accordion, Toggle → Bricks interactive elements
- Form widgets → Bricks form elements (where available)
- Spacer, Divider, Google Maps → utility element equivalents
- Custom CSS from Elementor's Advanced tab → Bricks custom CSS fields
- Responsive visibility settings → Bricks breakpoint visibility
- Motion effects and entrance animations → Bricks interaction settings (where supported)
- Inner Section nesting → Bricks nested container structure
- Global widget references → resolved to inline content (Bricks templates noted for manual setup)
Preserves:
- Content text, images, links, and media references
- Typography settings (font family, size, weight, line-height, letter-spacing)
- Color values (hex, rgb, rgba, CSS variables)
- Spacing (margin, padding) and sizing
- Background images, overlays, gradients
- Border and border-radius settings
- Box shadow values
- Link targets and rel attributes
- CSS classes and IDs
What This Skill Does NOT Do
- Third-party Elementor addons — Widgets from Essential Addons, JetElements, Crocoblock, PowerPack, etc. are flagged for manual migration. The skill cannot map proprietary addon widgets to Bricks equivalents automatically.
- Elementor Pro dynamic tags — Dynamic content (ACF fields, custom field displays, loop templates) require Bricks' own dynamic data system, which has different capabilities. These are flagged, not auto-converted.
- Theme Builder templates — Elementor's header/footer/archive/single templates use a different storage mechanism. This skill migrates page content, not theme builder templates.
- Popup/modal content — Elementor popups are stored separately and are not included in page migration.
- WooCommerce widgets — Elementor Pro's product grid, cart, checkout widgets need Bricks' WooCommerce elements configured separately.
- Pixel-perfect recreation — Bricks uses a different rendering engine. Spacing and alignment will be close but may need manual fine-tuning.
Requirements
- Respira for WordPress plugin installed and connected
- MCP connection active (desktop or WebMCP)
- Elementor plugin active (to read source content)
- Bricks theme installed and active (to write target content)
- Read access to scan Elementor content
- Write access to create duplicates with Bricks content
Trigger Phrase
- "migrate elementor to bricks"
Alternative Triggers
- "convert elementor to bricks"
- "switch from elementor to bricks"
- "rebuild elementor pages in bricks"
- "move my site from elementor to bricks"
- "elementor to bricks migration"
Source Builder: Elementor
Elementor stores page content in the _elementor_data post meta field as a JSON string. The structure is a nested tree:
Document
└─ Section (type: "section")
├─ settings: { structure, layout, content_width, ... }
└─ elements: [
Column (type: "column")
├─ settings: { _column_size, ... }
└─ elements: [
Widget (type: "widget", widgetType: "heading")
└─ settings: { title, size, header_size, ... }
]
]
Key Elementor specifics:
- Widget types are in the
widgetType field (e.g., heading, text-editor, image, button)
- Responsive settings use suffixes:
margin, margin_tablet, margin_mobile
- CSS is cached in
_elementor_css post meta — not needed for migration but useful for verification
- Page settings in
_elementor_page_settings (page layout, hide title, etc.)
- Global widgets reference a template via
templateID — must be resolved before mapping
Read Elementor content via respira_extract_builder_content with builder=elementor.
Target Builder: Bricks
Bricks stores content in _bricks_page_content_2 as a JSON array. Each element is a flat object with parent references:
[
{ "id": "abc123", "name": "section", "parent": 0, "settings": {...} },
{ "id": "def456", "name": "container", "parent": "abc123", "settings": {...} },
{ "id": "ghi789", "name": "heading", "parent": "def456", "settings": { "tag": "h2", "text": "..." } }
]
Key Bricks specifics:
- Elements use
name (not widgetType): section, container, heading, text-basic, image, button, video, icon
- Parent-child relationships use
parent field referencing parent id
- IDs are short alphanumeric strings (6 chars typical)
- Settings keys differ from Elementor (e.g.,
tag not header_size, text not title)
- Responsive settings use
_breakpoints key within settings
Write Bricks content via respira_inject_builder_content with builder=bricks.
Execution Workflow
Phase 1: Pre-Migration Audit
- Verify Respira + MCP connection via
respira_get_site_context. If unavailable, stop and show setup guidance.
- Confirm Elementor is active via
respira_list_plugins.
- Confirm Bricks theme is installed via
respira_get_site_context.
- Inventory and scope the source pages with
respira_find_builder_targets (builder=elementor) — this gives a fast, ranked list of every Elementor-built page/post before you touch anything. Fall back to respira_list_pages / respira_list_posts + respira_get_builder_info to confirm builder per item where needed.
- For each Elementor page, extract content via
respira_extract_builder_content with builder=elementor
- Build an inventory:
- Total pages/posts using Elementor
- Widget types used across the site (frequency count)
- Third-party addon widgets detected (flagged for manual handling)
- Global widgets referenced
- Dynamic tags usage
- Estimated migration complexity per page (simple/moderate/complex)
Phase 2: Migration Plan
Present a clear migration plan:
## Elementor → Bricks Migration Plan
### Site Inventory
- Total Elementor pages: X
- Total widgets to convert: X
- Auto-convertible widgets: X (Y%)
- Manual attention needed: X (Y%)
### Widget Mapping Summary
| Elementor Widget | Bricks Element | Status |
|-----------------|----------------|--------|
| heading | heading | Auto |
| text-editor | text-basic | Auto |
| image | image | Auto |
| [addon widget] | — | Manual |
### Page-by-Page Plan
1. **[Page Title]** — X widgets, [simple/moderate/complex]
- Auto-convertible: X widgets
- Needs attention: [list any flagged widgets]
2. ...
### Flagged Items (Require Manual Work)
- [List of third-party widgets, dynamic tags, etc.]
Ask for confirmation:
Ready to proceed? I'll create Bricks duplicates of each page — your original Elementor pages stay untouched.
- Migrate all pages
- Migrate specific pages (pick from list)
- Start with a test page first
- Just keep this plan as reference
Phase 3: Page-by-Page Migration
For each approved page:
- Read full Elementor content via
respira_extract_builder_content with builder=elementor
- Walk the Elementor JSON tree and map each widget:
- Convert Section → Bricks
section
- Convert Column → Bricks
container (assign parent)
- Convert each widget → appropriate Bricks element
- Map settings: typography, colors, spacing, backgrounds, borders
- Convert responsive suffixes (
_tablet, _mobile) to Bricks breakpoint format
- Resolve global widgets to inline content
- Flag unmappable widgets with
<!-- MIGRATION NOTE: ... --> comments
- Generate valid Bricks JSON array with proper
id, name, parent, settings
- Create a duplicate page via
respira_create_page_duplicate or respira_create_post_duplicate
- Before writing, take a snapshot with
respira_get_snapshot so the duplicate's pre-write state can be restored if anything goes wrong
- Write Bricks content to the duplicate via
respira_inject_builder_content with builder=bricks
- Surgical fix pass — if the injected page has validation issues (collapsed column widths, broken parent refs, a misconverted element), do not re-inject the whole page. Locate the specific element with
respira_find_element and correct it with respira_update_element. For repeated fixes across many elements or several pages, batch them with respira_batch_update
- Report status for this page before moving to next
Phase 4: Post-Migration Verification
- Summarize all migrations:
- Design tokens registered in Bricks' global styles (token names and counts)
- Pages migrated successfully
- Total widgets converted
- Items flagged for manual attention
- For each migrated page, provide:
- Link to the Bricks duplicate in wp-admin
- List of any flagged widgets or settings that need manual review
- Comparison notes (what was preserved vs. what needs adjustment)
- Provide a post-migration checklist:
Design Tokens
Conversion writes now register the colors and typography they carry as named design tokens in Bricks' own global styles, and the converted pages reference those tokens instead of carrying value copies. When fixing or extending a migrated page, reuse the registered tokens (respira_list_design_tokens shows them) rather than re-inlining raw hex values or font stacks. And say so when you finish: the migration summary should name the tokens that were registered and note that migrated pages reference them.
Safety Model
- Read-only analysis first — full Elementor content scan before any changes
- Explicit user confirmation required before creating any duplicates
- Original Elementor pages are never modified or deleted
- All migrated content goes to draft duplicates only
- Never auto-publishes migrated pages
- Takes a
respira_get_snapshot of each duplicate before any write, so its pre-write state can be restored
- Two explicit rollback paths: restore the snapshot with
respira_restore_snapshot, or delete the draft duplicates entirely with respira_delete_page / respira_delete_post
- Surgical fixes (
respira_find_element + respira_update_element, or respira_batch_update) replace whole-page re-injection, so corrections stay scoped and reversible
Honest Disclaimer
This skill converts Elementor page content to Bricks Builder format and creates draft duplicates for review.
It cannot:
- Migrate third-party Elementor addon widgets automatically
- Recreate Elementor Pro dynamic tags or loop templates
- Guarantee pixel-perfect visual parity
- Migrate theme builder templates (headers, footers, archives)
- Convert Elementor popups or modal content
- Replace manual QA and visual review
It can:
- Convert 80-90% of standard Elementor widgets to Bricks equivalents
- Preserve text content, images, links, and basic styling
- Save days of manual page rebuilding
- Provide a clear map of what needs manual attention
- Keep your original pages completely safe during the process
Tooling
Core WordPress tools
respira_get_site_context
respira_list_plugins
respira_list_pages
respira_list_posts
respira_read_page
respira_read_post
respira_get_builder_info
respira_extract_builder_content
respira_inject_builder_content
respira_find_builder_targets
respira_create_page_duplicate
respira_create_post_duplicate
Safety and precision tools
respira_get_snapshot
respira_restore_snapshot
respira_find_element
respira_update_element
respira_batch_update
respira_delete_page
respira_delete_post
Telemetry
After run completion, send fire-and-forget usage tracking to:
POST https://www.respira.press/api/skills/track-usage
Include:
skill_slug = migrate-elementor-to-bricks
- site/version context
- duration and success
- pages migrated, widgets converted, widgets flagged counts
- tools used
Never block user flow on telemetry failure.
Related Skills
- WordPress Site DNA (understand site structure before migrating)
- Internal Link Builder (rebuild internal links after migration)
- SEO & AEO Amplifier (verify SEO preservation post-migration)
- Technical Debt Audit (clean up post-migration)
Built by Respira Team
https://respira.press/skills/migrate-elementor-to-bricks
1---2name: migrate-elementor-to-bricks3description: Use when the user says 'migrate elementor to bricks', 'convert elementor to bricks', or 'move my site from elementor to bricks'. Reads the Elementor JSON widget data, maps each widget to its Bricks equivalent, and creates draft duplicates with clean Bricks JSON.4license: MIT5---67# Migrate Elementor to Bricks89**Version:** 2.1.010**Updated:** 2026-08-0411**Freshly updated:** v2.1.0 adds design-token awareness: conversion writes now register the colors and typography they carry as named design tokens in Bricks' own global styles, and converted pages reference those tokens instead of carrying value copies. Reuse registered tokens instead of re-inlining raw values, and report the registration in the migration summary.1213Converts Elementor-built WordPress pages to Bricks Builder. Reads Elementor's JSON widget tree from post meta, maps each widget to its closest Bricks element equivalent, generates a migration plan for approval, and writes clean Bricks JSON to the target pages. Use this skill whenever someone wants to move from Elementor to Bricks, rebuild Elementor pages in Bricks, or switch page builders from Elementor to Bricks.1415## What This Skill Does1617Elementor and Bricks are both visual page builders, but they store content in fundamentally different formats — Elementor uses a nested JSON widget tree in `_elementor_data`, while Bricks uses a flat-ish JSON array in `_bricks_page_content_2`. This skill bridges that gap by reading every Elementor widget, understanding its purpose, and recreating it as the appropriate Bricks element. Both Elementor and Bricks are among the 16 page builders Respira reads and writes natively, so the extraction and injection run through the same builder-aware tooling Respira uses everywhere else.1819**Handles:**20- Section/Column layouts → Bricks Section/Container elements21- Text Editor, Heading, Image, Video, Button widgets → native Bricks equivalents22- Icon, Icon Box, Image Box, Star Rating → Bricks icon and media elements23- Tabs, Accordion, Toggle → Bricks interactive elements24- Form widgets → Bricks form elements (where available)25- Spacer, Divider, Google Maps → utility element equivalents26- Custom CSS from Elementor's Advanced tab → Bricks custom CSS fields27- Responsive visibility settings → Bricks breakpoint visibility28- Motion effects and entrance animations → Bricks interaction settings (where supported)29- Inner Section nesting → Bricks nested container structure30- Global widget references → resolved to inline content (Bricks templates noted for manual setup)3132**Preserves:**33- Content text, images, links, and media references34- Typography settings (font family, size, weight, line-height, letter-spacing)35- Color values (hex, rgb, rgba, CSS variables)36- Spacing (margin, padding) and sizing37- Background images, overlays, gradients38- Border and border-radius settings39- Box shadow values40- Link targets and rel attributes41- CSS classes and IDs4243## What This Skill Does NOT Do4445- **Third-party Elementor addons** — Widgets from Essential Addons, JetElements, Crocoblock, PowerPack, etc. are flagged for manual migration. The skill cannot map proprietary addon widgets to Bricks equivalents automatically.46- **Elementor Pro dynamic tags** — Dynamic content (ACF fields, custom field displays, loop templates) require Bricks' own dynamic data system, which has different capabilities. These are flagged, not auto-converted.47- **Theme Builder templates** — Elementor's header/footer/archive/single templates use a different storage mechanism. This skill migrates page content, not theme builder templates.48- **Popup/modal content** — Elementor popups are stored separately and are not included in page migration.49- **WooCommerce widgets** — Elementor Pro's product grid, cart, checkout widgets need Bricks' WooCommerce elements configured separately.50- **Pixel-perfect recreation** — Bricks uses a different rendering engine. Spacing and alignment will be close but may need manual fine-tuning.5152## Requirements5354- Respira for WordPress plugin installed and connected55- MCP connection active (desktop or WebMCP)56- Elementor plugin active (to read source content)57- Bricks theme installed and active (to write target content)58- Read access to scan Elementor content59- Write access to create duplicates with Bricks content6061## Trigger Phrase6263- "migrate elementor to bricks"6465## Alternative Triggers6667- "convert elementor to bricks"68- "switch from elementor to bricks"69- "rebuild elementor pages in bricks"70- "move my site from elementor to bricks"71- "elementor to bricks migration"7273## Source Builder: Elementor7475Elementor stores page content in the `_elementor_data` post meta field as a JSON string. The structure is a nested tree:7677```78Document79 └─ Section (type: "section")80 ├─ settings: { structure, layout, content_width, ... }81 └─ elements: [82 Column (type: "column")83 ├─ settings: { _column_size, ... }84 └─ elements: [85 Widget (type: "widget", widgetType: "heading")86 └─ settings: { title, size, header_size, ... }87 ]88 ]89```9091Key Elementor specifics:92- **Widget types** are in the `widgetType` field (e.g., `heading`, `text-editor`, `image`, `button`)93- **Responsive settings** use suffixes: `margin`, `margin_tablet`, `margin_mobile`94- **CSS** is cached in `_elementor_css` post meta — not needed for migration but useful for verification95- **Page settings** in `_elementor_page_settings` (page layout, hide title, etc.)96- **Global widgets** reference a template via `templateID` — must be resolved before mapping9798Read Elementor content via `respira_extract_builder_content` with `builder=elementor`.99100## Target Builder: Bricks101102Bricks stores content in `_bricks_page_content_2` as a JSON array. Each element is a flat object with parent references:103104```json105[106 { "id": "abc123", "name": "section", "parent": 0, "settings": {...} },107 { "id": "def456", "name": "container", "parent": "abc123", "settings": {...} },108 { "id": "ghi789", "name": "heading", "parent": "def456", "settings": { "tag": "h2", "text": "..." } }109]110```111112Key Bricks specifics:113- Elements use `name` (not widgetType): `section`, `container`, `heading`, `text-basic`, `image`, `button`, `video`, `icon`114- Parent-child relationships use `parent` field referencing parent `id`115- IDs are short alphanumeric strings (6 chars typical)116- Settings keys differ from Elementor (e.g., `tag` not `header_size`, `text` not `title`)117- Responsive settings use `_breakpoints` key within settings118119Write Bricks content via `respira_inject_builder_content` with `builder=bricks`.120121## Execution Workflow122123### Phase 1: Pre-Migration Audit1241251. Verify Respira + MCP connection via `respira_get_site_context`. If unavailable, stop and show setup guidance.1262. Confirm Elementor is active via `respira_list_plugins`.1273. Confirm Bricks theme is installed via `respira_get_site_context`.1284. Inventory and scope the source pages with `respira_find_builder_targets` (builder=elementor) — this gives a fast, ranked list of every Elementor-built page/post before you touch anything. Fall back to `respira_list_pages` / `respira_list_posts` + `respira_get_builder_info` to confirm builder per item where needed.1295. For each Elementor page, extract content via `respira_extract_builder_content` with `builder=elementor`1306. Build an inventory:131 - Total pages/posts using Elementor132 - Widget types used across the site (frequency count)133 - Third-party addon widgets detected (flagged for manual handling)134 - Global widgets referenced135 - Dynamic tags usage136 - Estimated migration complexity per page (simple/moderate/complex)137138### Phase 2: Migration Plan139140Present a clear migration plan:141142```143## Elementor → Bricks Migration Plan144145### Site Inventory146- Total Elementor pages: X147- Total widgets to convert: X148- Auto-convertible widgets: X (Y%)149- Manual attention needed: X (Y%)150151### Widget Mapping Summary152| Elementor Widget | Bricks Element | Status |153|-----------------|----------------|--------|154| heading | heading | Auto |155| text-editor | text-basic | Auto |156| image | image | Auto |157| [addon widget] | — | Manual |158159### Page-by-Page Plan1601. **[Page Title]** — X widgets, [simple/moderate/complex]161 - Auto-convertible: X widgets162 - Needs attention: [list any flagged widgets]1632. ...164165### Flagged Items (Require Manual Work)166- [List of third-party widgets, dynamic tags, etc.]167```168169Ask for confirmation:170> Ready to proceed? I'll create Bricks duplicates of each page — your original Elementor pages stay untouched.171> 1. Migrate all pages172> 2. Migrate specific pages (pick from list)173> 3. Start with a test page first174> 4. Just keep this plan as reference175176### Phase 3: Page-by-Page Migration177178For each approved page:1791801. Read full Elementor content via `respira_extract_builder_content` with `builder=elementor`1812. Walk the Elementor JSON tree and map each widget:182 - Convert Section → Bricks `section`183 - Convert Column → Bricks `container` (assign parent)184 - Convert each widget → appropriate Bricks element185 - Map settings: typography, colors, spacing, backgrounds, borders186 - Convert responsive suffixes (`_tablet`, `_mobile`) to Bricks breakpoint format187 - Resolve global widgets to inline content188 - Flag unmappable widgets with `<!-- MIGRATION NOTE: ... -->` comments1893. Generate valid Bricks JSON array with proper `id`, `name`, `parent`, `settings`1904. Create a duplicate page via `respira_create_page_duplicate` or `respira_create_post_duplicate`1915. Before writing, take a snapshot with `respira_get_snapshot` so the duplicate's pre-write state can be restored if anything goes wrong1926. Write Bricks content to the duplicate via `respira_inject_builder_content` with `builder=bricks`1937. Surgical fix pass — if the injected page has validation issues (collapsed column widths, broken parent refs, a misconverted element), do not re-inject the whole page. Locate the specific element with `respira_find_element` and correct it with `respira_update_element`. For repeated fixes across many elements or several pages, batch them with `respira_batch_update`1948. Report status for this page before moving to next195196### Phase 4: Post-Migration Verification1971981. Summarize all migrations:199 - Design tokens registered in Bricks' global styles (token names and counts)200 - Pages migrated successfully201 - Total widgets converted202 - Items flagged for manual attention2032. For each migrated page, provide:204 - Link to the Bricks duplicate in wp-admin205 - List of any flagged widgets or settings that need manual review206 - Comparison notes (what was preserved vs. what needs adjustment)2073. Provide a post-migration checklist:208 - [ ] Open each duplicate in Bricks editor and review layout209 - [ ] Check responsive views (tablet, mobile)210 - [ ] Verify all images and media load correctly211 - [ ] Test all links and buttons212 - [ ] Review flagged items and recreate manually213 - [ ] Check forms and interactive elements214 - [ ] Compare side-by-side with Elementor original215216## Design Tokens217218Conversion writes now register the colors and typography they carry as named design tokens in Bricks' own global styles, and the converted pages reference those tokens instead of carrying value copies. When fixing or extending a migrated page, reuse the registered tokens (`respira_list_design_tokens` shows them) rather than re-inlining raw hex values or font stacks. And say so when you finish: the migration summary should name the tokens that were registered and note that migrated pages reference them.219220## Safety Model221222- Read-only analysis first — full Elementor content scan before any changes223- Explicit user confirmation required before creating any duplicates224- Original Elementor pages are never modified or deleted225- All migrated content goes to draft duplicates only226- Never auto-publishes migrated pages227- Takes a `respira_get_snapshot` of each duplicate before any write, so its pre-write state can be restored228- Two explicit rollback paths: restore the snapshot with `respira_restore_snapshot`, or delete the draft duplicates entirely with `respira_delete_page` / `respira_delete_post`229- Surgical fixes (`respira_find_element` + `respira_update_element`, or `respira_batch_update`) replace whole-page re-injection, so corrections stay scoped and reversible230231## Honest Disclaimer232233This skill converts Elementor page content to Bricks Builder format and creates draft duplicates for review.234235It cannot:236- Migrate third-party Elementor addon widgets automatically237- Recreate Elementor Pro dynamic tags or loop templates238- Guarantee pixel-perfect visual parity239- Migrate theme builder templates (headers, footers, archives)240- Convert Elementor popups or modal content241- Replace manual QA and visual review242243It can:244- Convert 80-90% of standard Elementor widgets to Bricks equivalents245- Preserve text content, images, links, and basic styling246- Save days of manual page rebuilding247- Provide a clear map of what needs manual attention248- Keep your original pages completely safe during the process249250## Tooling251252**Core WordPress tools**253- `respira_get_site_context`254- `respira_list_plugins`255- `respira_list_pages`256- `respira_list_posts`257- `respira_read_page`258- `respira_read_post`259- `respira_get_builder_info`260- `respira_extract_builder_content`261- `respira_inject_builder_content`262- `respira_find_builder_targets`263- `respira_create_page_duplicate`264- `respira_create_post_duplicate`265266**Safety and precision tools**267- `respira_get_snapshot`268- `respira_restore_snapshot`269- `respira_find_element`270- `respira_update_element`271- `respira_batch_update`272- `respira_delete_page`273- `respira_delete_post`274275## Telemetry276277After run completion, send fire-and-forget usage tracking to:278279- `POST https://www.respira.press/api/skills/track-usage`280281Include:282- `skill_slug = migrate-elementor-to-bricks`283- site/version context284- duration and success285- pages migrated, widgets converted, widgets flagged counts286- tools used287288Never block user flow on telemetry failure.289290## Related Skills291292- WordPress Site DNA (understand site structure before migrating)293- Internal Link Builder (rebuild internal links after migration)294- SEO & AEO Amplifier (verify SEO preservation post-migration)295- Technical Debt Audit (clean up post-migration)296297---298299Built by Respira Team300https://respira.press/skills/migrate-elementor-to-bricks