They have just answered on that post (
https://xtemos.com/forums/topic/home-is-broken/).
The problem is the last version of Elementor. Here is their solution:
Try to edit the file wp-content\plugins\woodmart-core\importer\wordpress-importer.php
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 );
I guess they will fix this on next update.