# Kit Import

Elementor Core Advanced

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.

# Command

wp elementor kit import <file-path> [--include] [--overrideConditions] [--sourceType]
1

# Arguments

<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.

# Usage Examples

wp elementor kit import path/to/elementor-kit.zip
1

This command will import the whole kit file content.

wp elementor kit import path/to/elementor-kit.zip --include=site-settings,content
1

This command will import only site settings and content.

wp elementor kit import path/to/elementor-kit.zip --overrideConditions=3478,4520
1

This command will import all content and will override conditions for the given template ids.

wp elementor kit import path/to/elementor-kit.zip --unfilteredFilesUpload=enable
1

This command will allow the import process to import unfiltered files.