Hello,
The export and import run smooth and quickly but the import is missing a couple things
a) When I exported from your other plugin, I chose Posts only and checked Include Media, but when I imported, no images were imported into the media gallery, the images are visible but they are being called from the old site
b) The posts are imported in classic editor format, not Gutenberg blocks
Thanks for the plugin, your advice is appreciated
]]>Hello, the elementor global site settings are not imported. I ran into this forum (https://www.ads-software.com/support/topic/plugin-update-to-process-elementor-global-site-settings/) which was discussed 2 years ago. In the forum it is mentioned that it is fixed. But when I am trying now the site settings are not imported. Can you please help me on this?
]]>I have observed that your template codes encompass components such as ‘content,’ ‘options,’ and ‘widgets,’ as exemplified below:
'template_url' => array(
'content' => 'full-url-path/content.json', /* Full URL Path to content.json */
'options' => 'full-url-path/master/options.json', /* Full URL Path to options.json */
'widgets' => 'full-url-path/widgets.json' /* Full URL Path to widgets.json */
),
However, I couldn’t identify any provisions for configuring media elements. Consequently, I am inquiring about the method by which I can import media in conjunction with the content.
]]>Hi ,
‘pages’ => array(
‘front_page’ => ‘Home Page Eleven’,
‘blog’ => ‘about’,
), is it possible to set seperate fornt page and blog page for each demos by Usign this plugin
Thanks
]]>Import elementor page and after importing all images link to my demo site, not the imported site. It is a security threat. Theme is best-shop.
]]>We need to preserve post_id
of our media files during the import.
The media file was defined in the content.json
:
{
"type_title": "Media",
"post_id": 196,
"post_title": "title",
"post_status": "inherit",
"post_name": "image",
"post_content": "",
"post_excerpt": "",
"post_parent": 0,
"menu_order": 0,
"post_date": "2017-11-14 05:50:54",
"post_date_gmt": "2017-11-14 05:50:54",
"guid": "12345",
"post_mime_type": "image/jpeg"
...
}
The imported image should have post_id=196
.
In order to accomplish that, we assigned a new callback function to the hook advanced_import_replace_post_ids
:
private function define_hooks() {
$plugin_admin = Import_hooks();
$this->loader->add_action( 'advanced_import_replace_post_ids', $plugin_admin, 'replace_post_ids', 999 );
}
The callback function returned empty array, so all post_ids should be preserved in this case:
public function replace_post_ids( $replace_post_ids ) {
/*Post IDS*/
$post_ids = array();
return $post_ids;
}
However, the imported image has different post_id from the initial value.
How can we preserve post_id of the media files during the import?
]]>Hello! Thank you for your great plugin.
I have found that in some cases of installing Elementor content, this fatal error appears:
Fatal error: Uncaught TypeError: json_decode(): Argument #1 ($json) must be of type string, array given in wp-content/plugins/advanced-import/admin/class-advanced-import-admin.php:2286
Stack Trace
It can be fixed by replacing code on line 2285 from this:
$test_json = @json_decode( $string, true );
to this:
$test_json = is_string( $string ) ? @json_decode( $string, true ) : '';
Can you please check, fix and release an update?
Thank you!
]]>Why is the fixed vulnerability not mentioned in the latest change log? This does not inform the users about the importance of the update.
]]>Hi
I have to pass some extra attributes with import button and change the message based on value.
I am looking for advanced-import-admin.js file not minified one. Can you please add to repo or tell me where I can find it?
Thank you
]]>Hi,
Is this plugin compatible with Pods? Is it possible to import data fields from a CSV file to populate and create Pod posts?
I’m looking for a method/plugin to bulk create multiple Pod posts via file import/upload. Is this something this plugin can do?
Thanks!
]]>Contact theme author or try again<br>Error Code:[object Object] parsererrorSyntaxError: JSON.parse: unexpected character at line 1 column 1 of the JSON data
This error does not appear if you install any demo second time.
Export is done by advanced export.
i need to have auto updates on my WordPress and even more important:
i need to have the options to upload theme-demos:
so can i do this with your plugin:
i want to have the option to upload theme-demo-packages from
Jobify-theme: https://kb.astoundify.com/article/380-installing-demo-content/
With Jobify 3.3+, and the usage of the new automatic content importer.
With this importer, you can import all the demo data as well as configure all your plugins, pages, and theme settings with one click.
jobscout-theme-demo: see https://rarathemes.com/wordpress-themes/jobscout-pro/
Can i do this with your plugin!? Love to hear from you
Regards
]]>_register_controls is deprecated since version 3.1.0! Use Elementor\Controls_Stack::register_controls()
]]>Hi,
First of all, thanks so much for this fantastic plugin which works out of the box than any other import plugin out there.
I am building a theme based on Elementor page builder and included Advanced import via TGMPA. All the demo data has been imported successfully except the values set using a select2 settings. For example, if I create an custom extension that adds WooCommerce products and it has options for adding selected category or selected IDs using the code
$this->add_control(
'woo_featured_products_list',
[
'label' => esc_html__( 'Select Featured products', 'theme-name' ),
'type' => Controls_Manager::SELECT2,
'multiple' => true,
'options' => $this->woo_featured_products_list(),
]
);
After importing a demo, the set values aren’t imported and the section looks empty.
Is there a solution to overcome this?
]]>this plugin support only installing a demo once it generates plugin file not found error
First time it installs correctly
Second time , plugin file not found contact the theme author error
Try installing https://www.ads-software.com/themes/best-shop/ demo
]]>Hello!
We have modified this plugin’s file to process Elementor’s global settings during import process:
advanced-import/admin/class-advanced-import-admin.php
It is located here:
https://cdn.exsthemewp.com/class-advanced-import-admin.php.zip
Can you please try to replace your file with our patched file, test Elementor’s global settings import and if everything is fine – create an update of your great plugin?
We found that Elementor creates post with type ‘elementor_library’ during it’s first activation. And your plugin looking for the posts with same name and title in existing WordPress installation and do not import them if it found one.
With our patch your plugin will update an existing post with ‘elementor_library’ type and update it’s meta.
Hope this helps.
Best regards!
]]>Hello!
First of all, many thanks for your great plugin!
After exporting/importing very basic Elementor site pages are imported but Global Site Settings are not:
https://i.imgur.com/GzbmeYh.png
Are we missed something?
We found that the global settings are stored in the database as a postmeta for this post:
wp_posts:
https://i.imgur.com/SwMm8k9.png
wp_postmeta:
https://i.imgur.com/tesH4Tz.png
But there is no such postmeta in the target site after import.
Steps to reproduce:
1. Install Elementor on the clean WordPress installation.
2. Create simple Elementor page.
3. Edit global site settings.
4. Export site with Advanced Export plugin.
5. Install Elementor and Advanced Import on the clean WordPress target installation.
6. Import file from the first installation.
7. Check – no global site settings imported.
Can you please help to resolve this issue?
]]>is it possible to import redux option data using this plugin?
]]>Imported demos by new elementor version, not success. Previous demos imports are working. Not sure the issues with import plugin or export plugin.
]]>When reset after WordPress Reset, error “plugin does not exist, contact theme author” (when installing demo)
]]>The demo import for elementor data is not work properly. After import it loads for a while and display success message but dosen’t import demo and display the following error with in dbug.log file:
PHP Notice: Undefined index: recommendedPlugins in C:\wamp64\www\newcheck\wp-content\plugins\advanced-import\admin\class-advanced-import-admin.php on line 933
Thank You
]]>When theme settings are in options array it does not import settings
]]>hi,
How can i add premium plugin zip file on demo content plugins array list
https://prnt.sc/118fep4
Thanks
Hi, Does this plugin works the same with the child theme also? Is there a way if the user install the child theme, it will install the parent theme as well (or maybe it can ask to install the parent theme first).
Also, how to install the required plugins when importing the demo content? For example, if there is a contact form 7 created, will it also install the contact form 7 plugin while importing the demo content?
I look forward to your reply, thanks.
]]>After import, the page does not open and cannot be edited pages created on elementor
]]>is_premium = true not working. Is there any way to add premium demo import( used for Elementor )
]]>Hi,
I tried to use the Advanced Importer with Elementor pages in the export.
Now I can’t access or edit any pages that were created with Elementor and have an Elementor template assigned.
Here is the error I get:
Warning: Illegal string offset ‘template’ in /www/htdocs/w0145288/test2.babepress.co/wp-content/plugins/elementor/core/settings/page/manager.php on line 259
Fatal error: Uncaught TypeError: Argument 1 passed to Elementor\Controls_Stack::sanitize_settings() must be of the type array, string given, called in /www/htdocs/w0145288/test2.babepress.co/wp-content/plugins/elementor/includes/base/controls-stack.php on line 1039 and defined in /www/htdocs/w0145288/test2.babepress.co/wp-content/plugins/elementor/includes/base/controls-stack.php:1999 Stack trace: #0 /www/htdocs/w0145288/test2.babepress.co/wp-content/plugins/elementor/includes/base/controls-stack.php(1039): Elementor\Controls_Stack->sanitize_settings(‘eable of Conten…’) #1 /www/htdocs/w0145288/test2.babepress.co/wp-content/plugins/elementor/includes/base/controls-stack.php(1806): Elementor\Controls_Stack->get_data(‘settings’) #2 /www/htdocs/w0145288/test2.babepress.co/wp-content/plugins/elementor/core/base/base-object.php(132): Elementor\Controls_Stack->get_init_settings() #3 /www/htdocs/w0145288/test2.babepress.co/wp-content/plugins/elementor/core/base/base-object.php(40): Elementor\Core\Base\Base_Object->ensure_settin in /www/htdocs/w0145288/test2.babepress.co/wp-content/plugins/elementor/includes/base/controls-stack.php on line 1999
Can you help?
]]>