An Elementor kit is a bundle of templates, pages, popups, etc. Rather than importing each template individually you can import all the content at once. A kit can be imported from the admin panel or from the command line using the kit import command.
wp elementor kit import <file-path> [--include] [--overrideConditions] [--sourceType]<file-path>
(Required) A path to the kit file.
[--include]
(Optional) Data types to include in the import. Possible values are content, templates, site-settings. If this parameter won't be specified, all data types will be included.
[--overrideConditions]
(Optional) Templates ids to override conditions for.
[--sourceType]
(Optional) Which source type is used in the current session. Available values are local, remote, library. Default value is local.
wp elementor kit import path/to/elementor-kit.zipThis command will import the whole kit file content.
wp elementor kit import path/to/elementor-kit.zip --include=site-settings,contentThis command will import only site settings and content.
wp elementor kit import path/to/elementor-kit.zip --overrideConditions=3478,4520This command will import all content and will override conditions for the given template ids.
wp elementor kit import path/to/elementor-kit.zip --unfilteredFilesUpload=enableThis command will allow the import process to import unfiltered files.