Appearance
Default Panel
Elementor Core BasicBy default, Elementor displays the widgets panel when the editor is loaded for the first time. You can change this.
Changing the Default Panel
Use the code below to make the page settings panel the default panel:
php
function change_default_elementor_panel( $config ) {
$config = array_replace_recursive(
$config,
[
'panel' => [
'default_route' => 'panel/page-settings/settings'
]
]
);
return $config;
}
add_filter( 'elementor/document/config', 'change_default_elementor_panel' );Available Panels
Here is a partial list of the built-in panels you can use as the default panel:
- Menu Panel
panel/menu
- User Preferences
panel/editor-preferences
- Page Settings
panel/page-settings/settingspanel/page-settings/stylepanel/page-settings/advanced
- History Panel
panel/history/actionspanel/history/revisions
- Widgets Panel
panel/elements/categoriespanel/elements/global