Import AJAX problem. Please, try import data manually
-
i get the problem if i import the base: Import AJAX problem. Please, try import data manually.
Please fix this problem, i have installed the theme several times with only the plugin from you.
Hello,
Could you please disable all plugins that are not related to our theme and provide us your FTP access so we can check it?
Thank you in advance
Try to edit the file woodmart/inc/classes/Importversion.php
and replace this code
private function _revolution_import( $filename ) {
if( ! apply_filters('woodmart_old_sliders_import', false ) ) {
$file = $this->_download_file_to_import( $filename );
} else {
$file = $this->_get_file_to_import( $filename );
}
if( ! $file ) return;
$revapi = new RevSlider();
ob_start();
$slider_result = $revapi->importSliderFromPost(true, true, $file);
ob_end_clean();
}
with this one
private function _revolution_import( $filename ) {
if( ! apply_filters('woodmart_old_sliders_import', false ) ) {
$file = $this->_download_file_to_import( $filename );
} else {
$file = $this->_get_file_to_import( $filename );
}
if( ! $file ) return;
$revapi = new RevSliderSliderImport();
ob_start();
$slider_result = $revapi->import_slider(true, $file);
ob_end_clean();
}
And then try to import the dummy content again.
Kind Regards
Hi
the problem is i havent this part in the Importversion.php
private function _revolution_import( $filename ) {
if( ! apply_filters(‘woodmart_old_sliders_import’, false ) ) {
$file = $this->_download_file_to_import( $filename );
} else {
$file = $this->_get_file_to_import( $filename );
}
if( ! $file ) return;
$revapi = new RevSlider();
ob_start();
$slider_result = $revapi->importSliderFromPost(true, true, $file);
ob_end_clean();
}
so i have tried to paste the second part of your code in Importversion.php but it still not working. i will give you my ftp access-
Please, update the theme to 3.8.2 that was just released.