Command Center¶
A keyboard-driven command palette for quickly adding elements, opening panels, applying presets, and navigating the builder without using the mouse.
Quick Reference
What it does: Searchable command palette for executing builder actions by typing instead of clicking. Where to find it: Press Cmd/Ctrl + K, or click the lightning bolt icon in the left sidebar. Key features:
- Fuzzy-matching search across elements, modals, settings, views, and presets
- Queue operators:
>(nest),*(multiply),^(above),+(attach preset) - Category filtering with
:element,:modal,:viewprefixes - Context-aware element insertion relative to the selected element
ET Docs: Command Center
Overview¶
The Command Center is Divi 5's command palette interface, similar to the command palettes found in code editors and design tools. It provides instant access to every builder action through a searchable, keyboard-navigable menu. You can add modules, open settings panels, switch views, apply presets, and navigate between pages, all from a single text input.
Beyond basic command execution, the Command Center supports queue operators that let you chain multiple actions into a single command string. This means you can create complex nested layouts, apply presets, and duplicate elements in one operation.
For the official Elegant Themes documentation, see Command Center.
Opening the Command Center¶
| Method | Action |
|---|---|
| Keyboard shortcut | Press Cmd/Ctrl + K |
| UI button | Click the lightning bolt icon in the builder sidebar |
Command Categories¶
The Command Center organizes available actions into categories. You can filter results by category using the : prefix.
| Category | Function | Examples |
|---|---|---|
| Element | Add page elements to the layout | Button, Blurb, Group, Text, Image |
| Modal | Open builder dialog panels | Variables, Import/Export, Library |
| Settings | Jump to specific option groups in the active settings panel | Animation, Border, Interactions, Spacing |
| View | Switch display and preview modes | Desktop, Tablet, Phone, Wireframe |
| Modify | Perform actions on the selected element | Duplicate, Delete, Copy, Cut, Paste, Reset |
| Navigate | Switch between pages and admin screens | Page names, Theme Builder, Theme Options |
| Preset | Apply a saved design preset to the selected element | Any custom preset by name |
| Page | Execute page-level actions | Save, Exit, Preview |
Filtering by Category¶
Type : followed by the category name to narrow results. For example:
:modalshows only modal-related commands:elementshows only element insertion commands:viewshows only view switching commands
Queue Operators¶
Queue operators let you combine multiple commands into a single execution string. This is the Command Center's most powerful feature for rapid layout building.
| Operator | Purpose | Example |
|---|---|---|
> |
Nest an element inside the previous element | blurb > button inserts a Button nested inside a Blurb |
* |
Multiply (duplicate) an element | button *2 adds two Button modules |
^ |
Place element above the currently selected element | ^ button inserts a Button above the selection |
+ |
Attach a preset to the element | button + Primary Preset adds a Button with the Primary Preset applied |
Combining Operators¶
Operators can be chained to build complex structures in a single command:
blurb > group > button *2— Creates a Blurb containing a Group containing two Buttonsbutton + Primary Preset *3— Adds three Buttons, each with the Primary Preset appliedblurb > group > button + Primary Preset *2— Full nested layout with presets in one command
Workflow¶
Basic Command Execution¶
- Press Cmd/Ctrl + K to open the Command Center.
- Type the command name or a partial match.
- Press Enter to execute the selected command.
Queue Mode (Chaining Commands)¶
- Press Cmd/Ctrl + K to open the Command Center.
- Type the first command.
- Press Cmd/Ctrl + Enter to enter queue mode.
- Add operators and additional commands to the queue string.
- Press Enter to execute the full queue.
Search Behavior¶
The Command Center uses fuzzy matching, so typing partial names filters the results in real time. For example, typing "blu" will surface the Blurb element command, and typing "ani" will surface the Animation settings command.
Context-Aware Insertion¶
Element commands are context-aware. When you add an element through the Command Center, it is inserted relative to the currently selected element on the canvas. If no element is selected, the new element is appended to the end of the page. The ^ operator overrides default placement by inserting above the selection.
Common Shortcuts¶
These standard keyboard shortcuts work throughout the builder, independent of the Command Center:
| Action | Shortcut |
|---|---|
| Open Command Center | Cmd/Ctrl + K |
| Save Page | Cmd/Ctrl + S |
| Undo | Cmd/Ctrl + Z |
| Redo | Cmd/Ctrl + Shift + Z |
Version Notes¶
Divi 5 Only
This page documents Divi 5 behavior exclusively. The Command Center is a new feature in Divi 5 with no equivalent in Divi 4.
Troubleshooting¶
Command Not Found
If a command does not appear in search results, verify the spelling or try a shorter search term. Category-specific commands only appear when the relevant context is active (e.g., Modify commands require an element to be selected).
Queue Operators Not Working
Ensure you are entering queue mode with Cmd/Ctrl + Enter before adding operators. Pressing Enter alone executes the current command immediately without queuing.