# 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:
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' );
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# 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/settings
panel/page-settings/style
panel/page-settings/advanced
- History Panel
panel/history/actions
panel/history/revisions
- Widgets Panel
panel/elements/categories
panel/elements/global