• Resolved Ashim Kumar

    (@ashimkumar)


    Hello Team,
    I’m having difficulties in managing this theme with KingComposer. For example, when editing Page > Home I always get this error when to save it. Any idea how to eliminate this?
    Your content has been saved, but there seems to be an error occurs.
    Please check all of your code and make sure there are no errors.
    Thank you in advance

Viewing 3 replies - 1 through 3 (of 3 total)
  • Hi @ashimkumar
    There two solution:
    First you can can setup Test Jquery update to disable jQuery Migrate

    Second solution: =>
    you can edit kc.bluilder.js file this is the path of file [kingcomposer\assets\js\kc.builder.js]
    – Search for .complete(

    – Replace this code

    complete(function (data) {
          if (data.status !== 200) {
             kc.msg('Please check all of your code and make sure there are no errors. ', 'error', 'sl-close');
    	}
    });

    to this

    .complete(function (data, status, xhr) {
    if (xhr.status !== 200) {
    kc.msg('Please check all of your code and make sure there are no errors. ', 'error', 'sl-close');
    	}
    });

    Pay attention if you choose the second solution you will lose the modification if you update the plugin

    I hope this help you

    Thread Starter Ashim Kumar

    (@ashimkumar)

    @mahmoudwp Thank you brother

    • This reply was modified 3 years, 2 months ago by Ashim Kumar.

    @ashimkumar
    Not at all bro.
    I hope to solve this error by the plugin developer in next update

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Content save error’ is closed to new replies.