Hi,
Thanks for the followup. I’ll admit we didn’t test that scenario but I’m not sure how the date would be causing an issue. Do you still have the original export file? Can you upload it somewhere and link to it here?
The image search will just check for the filename. We use a pretty basic WP function for that. Specifically:
$image = get_posts(array(
'post_type' => 'attachment',
'name' => $filename,
'posts_per_page' => 1,
'post_status' => 'inherit',
));
Any idea why that wouldn’t work? Did some of the file names change maybe? This is still a new feature so I’m happy to adapt the functionality to cover some edge cases if you can describe your export/import process a bit more.
How many images does the site have?
In the end, what happened? Were you only able to import some of the slideshows?
Appreciate the feedback, thanks!