Home Forums WoodMart support forum Import AJAX problem. Please, try import data manually

Import AJAX problem. Please, try import data manually

Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #132194

    Muri840
    Participant

    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.

    #132220

    Artem Temos
    Keymaster

    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

    #132223

    Artem Temos
    Keymaster

    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

    #132276

    Muri840
    Participant

    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-

    #132279

    Artem Temos
    Keymaster

    Please, update the theme to 3.8.2 that was just released.

Viewing 5 posts - 1 through 5 (of 5 total)