Try to add the following PHP code snippet to the child theme functions.php file to fix this
add_action( 'elementor/frontend/widget/before_render', function ($el) {
if ( is_object( $el ) && 'wd_single_product_additional_info_table' === $el->get_name() ) {
add_filter( 'wp_calculate_image_srcset', '__return_empty_array' );
add_filter( 'wp_calculate_image_sizes', '__return_empty_array' );
}
});
add_action( 'elementor/frontend/widget/after_render', function ($el) {
if ( is_object( $el ) && 'wd_single_product_additional_info_table' === $el->get_name() ) {
remove_filter( 'wp_calculate_image_sizes', '__return_empty_array' );
remove_filter( 'wp_calculate_image_srcset', '__return_empty_array' );
}
});