Home Forums WoodMart support forum Dummy Content Import Not Installed Properly

Dummy Content Import Not Installed Properly

Viewing 10 posts - 1 through 10 (of 10 total)
  • Author
    Posts
  • #213390

    Chandan Logunjeet
    Participant

    Hello,
    I installed the theme and dummy content, but it’s not like what it was in the demo
    And it shows text in the homepage.
    I have attached screenshots of my website

    Attachments:
    You must be logged in to view attached files.
    #213422

    Artem Temos
    Keymaster

    Hello,

    Could you please reset the database and reinstall the WordPress completely? Provide us your admin access so we can try to run the import ourselves and check why it doesn’t work.

    Kind Regards

    #213426

    Chandan Logunjeet
    Participant

    Hey sharing u the details.
    Please help me by importing the content

    #213428

    Artem Temos
    Keymaster

    Please reset the database and reinstall the WordPress completely. And send us your FTP access as well.

    #213528

    Chandan Logunjeet
    Participant

    Please find the details here

    #213549

    Artem Temos
    Keymaster

    We found the problem and it is because of the latest Elementor update. Try to edit the file wp-content\plugins\woodmart-core\importer\wordpress-importer.php and replace the following code

    if ( '_elementor_data' === $key ) {
    	$wp_importer = get_plugins( '/wordpress-importer' );
    	if ( $wp_importer ) {
    		$wp_importer_version = $wp_importer['wordpress-importer.php']['Version'];
    		if ( $wp_importer_version && version_compare( $wp_importer_version, '0.7', '>=' ) ) {
    			add_post_meta( $post_id, wp_slash( $key ), wp_slash_strings_only( $value ) );
    		} else {
    			add_post_meta( $post_id, $key, $value );
    		}
    	} else {
    		add_post_meta( $post_id, $key, $value );
    	}
    } else {
    	add_post_meta( $post_id, $key, $value );
    }

    with this one

    if ( '_elementor_data' === $key ) {
    	$value = wp_slash_strings_only( $value );
    }
    add_post_meta( $post_id, $key, $value );

    Then try to import our dummy content again.

    #213600

    Chandan Logunjeet
    Participant

    Unable to locate the program

    Kindly share the serial no. Present at the left side

    Thank you

    #213695

    Artem Temos
    Keymaster

    We have released a new version with the fix. You don’t need to change anything in the current theme files. So now you just need to reinstall everything from scratch (including WordPress) and run the import again. It should work correctly.

    #214008

    Chandan Logunjeet
    Participant

    Can you guide me by mentioning step wise procedures to do this ?

    #214093

    Artem Temos
    Keymaster

    Firstly, you need to clear your database completely using your server control panel. Then, install the WordPress as you did it already and follow our documentation guide on how to install our theme import the dummy content. But be sure that you have downloaded the latest version of our theme 5.0.3 and removed the old one. Don’t forget to update all required plugins also. You can do this in Appearance -> Install plugins. https://xtemos.com/docs/woodmart/installation-process/

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