Skip to content

Latest commit

 

History

History
55 lines (33 loc) · 1.6 KB

File metadata and controls

55 lines (33 loc) · 1.6 KB

Kit Import

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]

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

This command will import the whole kit file content.

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

This command will import only site settings and content.

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

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

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