Hi @inografik,
I’m sorry, I don’t have much experience working with the Elementor plugin.
Does Elementor have its own importer for the global settings or any other way to import it from one site to another?
Our plugin does not have a special Elementor importer that would do that for you. It just imports the WP core items -> content (pages, posts, …), customizer settings, and widgets.
Take care!
Hi @capuderg
Elementor has its own importer, i am able to generate a file for import general settings, just im trying to merge import processes thats why i asked it.
thanks for your kindest response.
Hi @inografik,
we don’t have a special Elementor importer integration in our OCDI plugin. So, if you would like to add it, you would have to write some custom code (initialize this Elemenor importer and import the settings) which you could hook in one of our action hooks after all other import is done, for example: ocdi/after_import.
Read these two sections in our docc in order to see how it could be set-up.
Maybe the Elementor support could help you out with the code needed to initialize their importer class and import your file. If you use the $selected_import parameter in the above’s hook callback function, you can define the import_elementor array key with the path to the elementor import file for your predefined demo in the ocdi/import_files hook and then use it in ocdi/after_import as $selected_import['import_elementor'].
Take care!