MerlinWP icon indicating copy to clipboard operation
MerlinWP copied to clipboard

Can't skip install import content page

Open Ninetheme opened this issue 7 years ago • 4 comments

https://d.pr/free/i/fKRSPE

Ninetheme avatar Mar 28 '19 17:03 Ninetheme

Could you elaborate on what you're running into, how you got there, and what you've tried to resolve it - if anything?

richtabor avatar Mar 28 '19 17:03 richtabor

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!

Ninetheme avatar Mar 28 '19 20:03 Ninetheme

Is there any update about this issue?

AdelDima avatar Jun 03 '19 09:06 AdelDima

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());
        }

AdelDima avatar Jun 03 '19 11:06 AdelDima