Skip to content

Default Panel

Elementor Core Basic

By 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: