Can't skip install import content page
https://d.pr/free/i/fKRSPE
Could you elaborate on what you're running into, how you got there, and what you've tried to resolve it - if anything?
I just follow your steps, using codes and seen a lot of errors.
merlin.js?ver=1.0.0:358 Uncaught TypeError: Cannot read property 'toLowerCase' of null at Object.ajax_callback [as success] (merlin.js?ver=1.0.0:358)
currentSpan.addClass(response.message.toLowerCase()); // TypeError report line
Test with second theme and same reported issues, modify header error and this.
I used WP RESET and tried another theme but imported old demodata and child theme https://d.pr/free/i/DxbD4c https://d.pr/free/i/AUoiFN
I am working on new theme and fresh options, will send you a video.
Thank you!
Is there any update about this issue?
After debugging I find that the response comes without a message ( empty ) And this is happing because the content file is big for me it's 6 m To fix this for now I had to add an expretion test the response.message
if (response.message !== null) {
currentSpan.addClass(response.message.toLowerCase());
}