Migrate Elementor to Oxygen
Converts Elementor-built WordPress pages to Oxygen Builder. Reads Elementor's JSON widget tree from post meta, maps each widget to its Oxygen component equivalent, generates a migration plan for approval, and writes Oxygen content to the target pages. Use this skill whenever someone wants to move from Elementor to Oxygen, switch to Oxygen's developer-oriented builder, or rebuild Elementor pages in Oxygen.
What This Skill Does
Oxygen is a fundamentally different kind of builder than Elementor — it outputs clean HTML/CSS without wrapper divs, gives direct access to CSS properties, and thinks in terms of components rather than widgets. This migration requires not just content transfer but a philosophical shift: Elementor's widget-based approach maps to Oxygen's component-based architecture where you have more control but less hand-holding.
Handles:
- Section/Column layouts → Oxygen Section/Columns/Div components
- Text Editor, Heading → Oxygen Text and Heading components
- Image, Video, Button → native Oxygen equivalents
- Icon, Icon Box → Oxygen icon components
- Tabs, Accordion → Oxygen interactive components
- Spacer, Divider → CSS spacing or Oxygen separator
- Google Maps → Oxygen map component
- Code Block, Custom HTML → Oxygen Code Block
- Image Gallery → Oxygen Gallery component
- Custom CSS → Oxygen's stylesheet or custom CSS fields
- Responsive settings → Oxygen media query breakpoints
Preserves:
- All text content, headings, and inline formatting
- Image URLs, alt text, captions, and links
- Typography settings (mapped to Oxygen's CSS-based typography controls)
- Color values (hex, rgb, rgba)
- Spacing values (margin, padding)
- Background images and gradients
- Border and shadow CSS properties
- Link URLs and targets
- CSS classes
What This Skill Does NOT Do
- Third-party Elementor addons — Essential Addons, JetElements, Crocoblock widgets are flagged for manual migration. Oxygen has its own ecosystem of components.
- Elementor Pro dynamic tags — Oxygen has powerful dynamic data capabilities but with a completely different interface. Dynamic content is flagged for manual setup.
- Theme Builder templates — Elementor's template system is separate from Oxygen's template system. Templates need to be recreated in Oxygen.
- Form widgets — Elementor forms need Oxygen's form component or a third-party solution.
- Popup content — Must be rebuilt using Oxygen's modal/lightbox functionality.
- WooCommerce widgets — Oxygen has its own WooCommerce components that must be configured independently.
- Motion effects and animations — Oxygen uses CSS animations directly; Elementor's motion effects don't map 1:1.
- Responsive precision — Oxygen uses explicit media query breakpoints (1120px, 992px, 768px, 480px by default) which differ from Elementor's breakpoints.
Requirements
- Respira for WordPress plugin installed and connected
- MCP connection active (desktop or WebMCP)
- Elementor plugin active (to read source content)
- Oxygen Builder installed and active (to write target content)
- Read access to scan Elementor content
- Write access to create duplicates with Oxygen content
Trigger Phrase
- "migrate elementor to oxygen"
Alternative Triggers
- "convert elementor to oxygen"
- "switch from elementor to oxygen"
- "rebuild elementor in oxygen"
- "move from elementor to oxygen"
- "elementor to oxygen 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
- Responsive settings use suffixes:
_tablet, _mobile
- CSS cached in
_elementor_css post meta
- Page settings in
_elementor_page_settings
- Global widgets reference templates via
templateID
Read Elementor content via wordpress_extract_builder_content with builder=elementor.
Target Builder: Oxygen
Oxygen stores content in the ct_builder_shortcodes post meta field. Despite the name, modern Oxygen uses a JSON-based structure internally.
Key Oxygen specifics:
- Components include:
ct_section, ct_row, ct_column, ct_div_block, ct_headline, ct_text_block, ct_image, ct_link_button
- Oxygen outputs clean HTML — minimal wrapper divs, direct CSS properties
- CSS is stored per-component with explicit property names (not shorthand)
- Responsive design uses media query breakpoints: default, 1120px, 992px, 768px, 480px
- Oxygen's ID system uses numeric component IDs
- Reusable parts are stored as
ct_template post type
- Oxygen disables the theme — it controls all output directly
Write Oxygen content via wordpress_inject_builder_content with builder=oxygen.
Execution Workflow
Phase 1: Pre-Migration Audit
- Verify Respira + MCP connection via
wordpress_get_site_context. If unavailable, stop and show setup guidance.
- Confirm Elementor is active via
wordpress_list_plugins.
- Confirm Oxygen is installed and active via
wordpress_list_plugins.
- Important: Note that Oxygen disables the WordPress theme. Verify the user understands this architectural difference.
- Scan all content for Elementor usage:
wordpress_list_pages and wordpress_list_posts
- For each, check builder via
wordpress_get_builder_info
- For each Elementor page, extract content via
wordpress_extract_builder_content with builder=elementor
- Build an inventory:
- Total pages/posts using Elementor
- Widget types used (frequency count)
- Third-party addon widgets detected
- Dynamic tags and global widgets
- Layout complexity per page
- Estimated migration difficulty (simple/moderate/complex)
Phase 2: Migration Plan
Present a migration plan that acknowledges the architectural differences:
## Elementor → Oxygen Migration Plan
### Architectural Note
Oxygen takes full control of your site's output — it disables your WordPress
theme entirely. This is a significant architectural change from Elementor,
which works alongside your theme. Plan accordingly for headers, footers,
and archive templates.
### Site Inventory
- Total Elementor pages: X
- Total widgets to convert: X
- Auto-convertible: X (Y%)
- Manual attention: X (Y%)
### Component Mapping Summary
| Elementor Widget | Oxygen Component | Status |
|------------------|-----------------|--------|
| heading | ct_headline | Auto |
| text-editor | ct_text_block | Auto |
| image | ct_image | Auto |
| button | ct_link_button | Auto |
| section/columns | ct_section/row | Auto |
| [addon widget] | — | Manual |
### Page-by-Page Plan
1. **[Page Title]** — X widgets, [complexity]
- Auto-convertible: X
- Needs attention: [details]
2. ...
### Post-Migration Requirements
- Oxygen templates needed for: header, footer, archive, single post
- [Any theme-dependent features that need Oxygen equivalents]
Ask for confirmation:
Oxygen is a powerful but different paradigm from Elementor. Your originals stay safe.
- Migrate all pages
- Migrate specific pages
- Start with a test page (recommended)
- Just keep this plan
Phase 3: Page-by-Page Migration
For each approved page:
- Read full Elementor content via
wordpress_extract_builder_content with builder=elementor
- Walk the Elementor JSON tree and map:
- Section →
ct_section
- Column →
ct_column within ct_row
- heading →
ct_headline (map header_size to tag, title to text)
- text-editor →
ct_text_block (preserve HTML content)
- image →
ct_image (map src, alt, dimensions)
- button →
ct_link_button (map label, URL, target)
- Map CSS properties directly (Oxygen uses explicit CSS, not abstracted settings)
- Convert Elementor responsive suffixes to Oxygen media query breakpoint keys
- Resolve global widgets to inline content
- Flag unmappable widgets
- Generate valid Oxygen component structure
- Create a duplicate via
wordpress_create_page_duplicate or wordpress_create_post_duplicate
- Write Oxygen content to the duplicate via
wordpress_inject_builder_content with builder=oxygen
- Report status
Phase 4: Post-Migration Verification
- Summarize all migrations:
- Pages migrated, components created, items flagged
- For each migrated page:
- Link to edit in Oxygen
- Flagged items list
- CSS property notes (where Oxygen's approach differs)
- Post-migration checklist:
Safety Model
- Read-only analysis first — full content scan before any changes
- Explicit user confirmation required before creating duplicates
- Original Elementor pages are never modified or deleted
- All migrated content goes to draft duplicates only
- Never auto-publishes migrated pages
- Creates a snapshot before migration begins (when available)
- Provides clear rollback path (delete duplicates)
- Warns about Oxygen's theme-disabling behavior upfront
Honest Disclaimer
This skill converts Elementor page content to Oxygen format and creates draft duplicates for review.
It cannot:
- Migrate third-party Elementor addon widgets
- Auto-convert dynamic tags to Oxygen dynamic data
- Guarantee pixel-perfect visual match
- Migrate theme builder templates or popups
- Set up Oxygen's global templates (header, footer, etc.)
- Replace visual QA review
It can:
- Convert 80-90% of standard Elementor widgets to Oxygen components
- Produce cleaner HTML output than Elementor
- Preserve all text content, images, links, and core styling
- Save significant rebuilding time
- Flag everything needing manual attention
- Keep original pages untouched
Tooling
Core WordPress tools
wordpress_get_site_context
wordpress_list_plugins
wordpress_list_pages
wordpress_list_posts
wordpress_read_page
wordpress_read_post
wordpress_get_builder_info
wordpress_extract_builder_content
wordpress_inject_builder_content
wordpress_find_builder_targets
wordpress_create_page_duplicate
wordpress_create_post_duplicate
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-oxygen
- site/version context
- duration and success
- pages migrated, components created, items flagged counts
- tools used
Never block user flow on telemetry failure.
Related Skills
- WordPress Site DNA (understand site structure before migrating)
- Internal Link Builder (verify internal links post-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-oxygen
1---2name: migrate-elementor-to-oxygen3description: Converts Elementor-built WordPress pages to Oxygen Builder. Reads Elementor's JSON widget tree from post meta, maps each widget to its Oxygen component equivalent, generates a migration plan for approval, and writes Oxygen content to the target pages. Use when user says "migrate Elementor to Oxygen", "switch from Elementor to Oxygen", or "rebuild Elementor pages in Oxygen's developer-oriented builder".4license: MIT5---6
7# Migrate Elementor to Oxygen
8
9Converts Elementor-built WordPress pages to Oxygen Builder. Reads Elementor's JSON widget tree from post meta, maps each widget to its Oxygen component equivalent, generates a migration plan for approval, and writes Oxygen content to the target pages. Use this skill whenever someone wants to move from Elementor to Oxygen, switch to Oxygen's developer-oriented builder, or rebuild Elementor pages in Oxygen.
10
11## What This Skill Does
12
13Oxygen is a fundamentally different kind of builder than Elementor — it outputs clean HTML/CSS without wrapper divs, gives direct access to CSS properties, and thinks in terms of components rather than widgets. This migration requires not just content transfer but a philosophical shift: Elementor's widget-based approach maps to Oxygen's component-based architecture where you have more control but less hand-holding.
14
15**Handles:**
16- Section/Column layouts → Oxygen Section/Columns/Div components
17- Text Editor, Heading → Oxygen Text and Heading components
18- Image, Video, Button → native Oxygen equivalents
19- Icon, Icon Box → Oxygen icon components
20- Tabs, Accordion → Oxygen interactive components
21- Spacer, Divider → CSS spacing or Oxygen separator
22- Google Maps → Oxygen map component
23- Code Block, Custom HTML → Oxygen Code Block
24- Image Gallery → Oxygen Gallery component
25- Custom CSS → Oxygen's stylesheet or custom CSS fields
26- Responsive settings → Oxygen media query breakpoints
27
28**Preserves:**
29- All text content, headings, and inline formatting
30- Image URLs, alt text, captions, and links
31- Typography settings (mapped to Oxygen's CSS-based typography controls)
32- Color values (hex, rgb, rgba)
33- Spacing values (margin, padding)
34- Background images and gradients
35- Border and shadow CSS properties
36- Link URLs and targets
37- CSS classes
38
39## What This Skill Does NOT Do
40
41- **Third-party Elementor addons** — Essential Addons, JetElements, Crocoblock widgets are flagged for manual migration. Oxygen has its own ecosystem of components.
42- **Elementor Pro dynamic tags** — Oxygen has powerful dynamic data capabilities but with a completely different interface. Dynamic content is flagged for manual setup.
43- **Theme Builder templates** — Elementor's template system is separate from Oxygen's template system. Templates need to be recreated in Oxygen.
44- **Form widgets** — Elementor forms need Oxygen's form component or a third-party solution.
45- **Popup content** — Must be rebuilt using Oxygen's modal/lightbox functionality.
46- **WooCommerce widgets** — Oxygen has its own WooCommerce components that must be configured independently.
47- **Motion effects and animations** — Oxygen uses CSS animations directly; Elementor's motion effects don't map 1:1.
48- **Responsive precision** — Oxygen uses explicit media query breakpoints (1120px, 992px, 768px, 480px by default) which differ from Elementor's breakpoints.
49
50## Requirements
51
52- Respira for WordPress plugin installed and connected
53- MCP connection active (desktop or WebMCP)
54- Elementor plugin active (to read source content)
55- Oxygen Builder installed and active (to write target content)
56- Read access to scan Elementor content
57- Write access to create duplicates with Oxygen content
58
59## Trigger Phrase
60
61- "migrate elementor to oxygen"
62
63## Alternative Triggers
64
65- "convert elementor to oxygen"
66- "switch from elementor to oxygen"
67- "rebuild elementor in oxygen"
68- "move from elementor to oxygen"
69- "elementor to oxygen migration"
70
71## Source Builder: Elementor
72
73Elementor stores page content in the `_elementor_data` post meta field as a JSON string. The structure is a nested tree:
74
75```
76Document
77 └─ Section (type: "section")
78 ├─ settings: { structure, layout, content_width, ... }
79 └─ elements: [
80 Column (type: "column")
81 ├─ settings: { _column_size, ... }
82 └─ elements: [
83 Widget (type: "widget", widgetType: "heading")
84 └─ settings: { title, size, header_size, ... }
85 ]
86 ]
87```
88
89Key Elementor specifics:
90- **Widget types** are in the `widgetType` field
91- **Responsive settings** use suffixes: `_tablet`, `_mobile`
92- **CSS** cached in `_elementor_css` post meta
93- **Page settings** in `_elementor_page_settings`
94- **Global widgets** reference templates via `templateID`
95
96Read Elementor content via `wordpress_extract_builder_content` with `builder=elementor`.
97
98## Target Builder: Oxygen
99
100Oxygen stores content in the `ct_builder_shortcodes` post meta field. Despite the name, modern Oxygen uses a JSON-based structure internally.
101
102Key Oxygen specifics:
103- Components include: `ct_section`, `ct_row`, `ct_column`, `ct_div_block`, `ct_headline`, `ct_text_block`, `ct_image`, `ct_link_button`
104- Oxygen outputs clean HTML — minimal wrapper divs, direct CSS properties
105- CSS is stored per-component with explicit property names (not shorthand)
106- Responsive design uses media query breakpoints: default, 1120px, 992px, 768px, 480px
107- Oxygen's ID system uses numeric component IDs
108- Reusable parts are stored as `ct_template` post type
109- Oxygen disables the theme — it controls all output directly
110
111Write Oxygen content via `wordpress_inject_builder_content` with `builder=oxygen`.
112
113## Execution Workflow
114
115### Phase 1: Pre-Migration Audit
116
1171. Verify Respira + MCP connection via `wordpress_get_site_context`. If unavailable, stop and show setup guidance.
1182. Confirm Elementor is active via `wordpress_list_plugins`.
1193. Confirm Oxygen is installed and active via `wordpress_list_plugins`.
1204. **Important**: Note that Oxygen disables the WordPress theme. Verify the user understands this architectural difference.
1215. Scan all content for Elementor usage:
122 - `wordpress_list_pages` and `wordpress_list_posts`
123 - For each, check builder via `wordpress_get_builder_info`
1246. For each Elementor page, extract content via `wordpress_extract_builder_content` with `builder=elementor`
1257. Build an inventory:
126 - Total pages/posts using Elementor
127 - Widget types used (frequency count)
128 - Third-party addon widgets detected
129 - Dynamic tags and global widgets
130 - Layout complexity per page
131 - Estimated migration difficulty (simple/moderate/complex)
132
133### Phase 2: Migration Plan
134
135Present a migration plan that acknowledges the architectural differences:
136
137```
138## Elementor → Oxygen Migration Plan
139
140### Architectural Note
141Oxygen takes full control of your site's output — it disables your WordPress
142theme entirely. This is a significant architectural change from Elementor,
143which works alongside your theme. Plan accordingly for headers, footers,
144and archive templates.
145
146### Site Inventory
147- Total Elementor pages: X
148- Total widgets to convert: X
149- Auto-convertible: X (Y%)
150- Manual attention: X (Y%)
151
152### Component Mapping Summary
153| Elementor Widget | Oxygen Component | Status |
154|------------------|-----------------|--------|
155| heading | ct_headline | Auto |
156| text-editor | ct_text_block | Auto |
157| image | ct_image | Auto |
158| button | ct_link_button | Auto |
159| section/columns | ct_section/row | Auto |
160| [addon widget] | — | Manual |
161
162### Page-by-Page Plan
1631. **[Page Title]** — X widgets, [complexity]
164 - Auto-convertible: X
165 - Needs attention: [details]
1662. ...
167
168### Post-Migration Requirements
169- Oxygen templates needed for: header, footer, archive, single post
170- [Any theme-dependent features that need Oxygen equivalents]
171```
172
173Ask for confirmation:
174> Oxygen is a powerful but different paradigm from Elementor. Your originals stay safe.
175> 1. Migrate all pages
176> 2. Migrate specific pages
177> 3. Start with a test page (recommended)
178> 4. Just keep this plan
179
180### Phase 3: Page-by-Page Migration
181
182For each approved page:
183
1841. Read full Elementor content via `wordpress_extract_builder_content` with `builder=elementor`
1852. Walk the Elementor JSON tree and map:
186 - Section → `ct_section`
187 - Column → `ct_column` within `ct_row`
188 - heading → `ct_headline` (map `header_size` to tag, `title` to text)
189 - text-editor → `ct_text_block` (preserve HTML content)
190 - image → `ct_image` (map src, alt, dimensions)
191 - button → `ct_link_button` (map label, URL, target)
192 - Map CSS properties directly (Oxygen uses explicit CSS, not abstracted settings)
193 - Convert Elementor responsive suffixes to Oxygen media query breakpoint keys
194 - Resolve global widgets to inline content
195 - Flag unmappable widgets
1963. Generate valid Oxygen component structure
1974. Create a duplicate via `wordpress_create_page_duplicate` or `wordpress_create_post_duplicate`
1985. Write Oxygen content to the duplicate via `wordpress_inject_builder_content` with `builder=oxygen`
1996. Report status
200
201### Phase 4: Post-Migration Verification
202
2031. Summarize all migrations:
204 - Pages migrated, components created, items flagged
2052. For each migrated page:
206 - Link to edit in Oxygen
207 - Flagged items list
208 - CSS property notes (where Oxygen's approach differs)
2093. Post-migration checklist:
210 - [ ] Open each duplicate in Oxygen editor
211 - [ ] Verify layout structure and component hierarchy
212 - [ ] Check responsive at each Oxygen breakpoint (1120px, 992px, 768px, 480px)
213 - [ ] Verify images and media
214 - [ ] Test links and buttons
215 - [ ] Recreate flagged elements manually
216 - [ ] Set up Oxygen templates for header/footer if not yet done
217 - [ ] Review Oxygen's clean HTML output
218 - [ ] Compare with Elementor original side-by-side
219
220## Safety Model
221
222- Read-only analysis first — full content scan before any changes
223- Explicit user confirmation required before creating duplicates
224- Original Elementor pages are never modified or deleted
225- All migrated content goes to draft duplicates only
226- Never auto-publishes migrated pages
227- Creates a snapshot before migration begins (when available)
228- Provides clear rollback path (delete duplicates)
229- Warns about Oxygen's theme-disabling behavior upfront
230
231## Honest Disclaimer
232
233This skill converts Elementor page content to Oxygen format and creates draft duplicates for review.
234
235It cannot:
236- Migrate third-party Elementor addon widgets
237- Auto-convert dynamic tags to Oxygen dynamic data
238- Guarantee pixel-perfect visual match
239- Migrate theme builder templates or popups
240- Set up Oxygen's global templates (header, footer, etc.)
241- Replace visual QA review
242
243It can:
244- Convert 80-90% of standard Elementor widgets to Oxygen components
245- Produce cleaner HTML output than Elementor
246- Preserve all text content, images, links, and core styling
247- Save significant rebuilding time
248- Flag everything needing manual attention
249- Keep original pages untouched
250
251## Tooling
252
253**Core WordPress tools**
254- `wordpress_get_site_context`
255- `wordpress_list_plugins`
256- `wordpress_list_pages`
257- `wordpress_list_posts`
258- `wordpress_read_page`
259- `wordpress_read_post`
260- `wordpress_get_builder_info`
261- `wordpress_extract_builder_content`
262- `wordpress_inject_builder_content`
263- `wordpress_find_builder_targets`
264- `wordpress_create_page_duplicate`
265- `wordpress_create_post_duplicate`
266
267## Telemetry
268
269After run completion, send fire-and-forget usage tracking to:
270
271- `POST https://www.respira.press/api/skills/track-usage`
272
273Include:
274- `skill_slug = migrate-elementor-to-oxygen`
275- site/version context
276- duration and success
277- pages migrated, components created, items flagged counts
278- tools used
279
280Never block user flow on telemetry failure.
281
282## Related Skills
283
284- WordPress Site DNA (understand site structure before migrating)
285- Internal Link Builder (verify internal links post-migration)
286- SEO & AEO Amplifier (verify SEO preservation post-migration)
287- Technical Debt Audit (clean up post-migration)
288
289---
290
291Built by Respira Team
292https://respira.press/skills/migrate-elementor-to-oxygen