Viewing 19 posts - 1 through 19 (of 19 total)
  • Author
    Posts
  • #748833

    bongiorno,

    there seems to be some sort of issue with the editor since the latest update.

    in particular:

    – the layout of the editor looks different
    – the editor half of the time doesn’t save the content entered.

    is this a known issue to you? if yes, what is the fix?

    #748883

    Hi clairemartindigital!

    Kriesi has done some updated and always doing changes to make the things run better.
    Can I please suggest to remove your coockies ( clear them once ) so we can run a test if that fixes the issue?
    There was some JS fixes which we could go through please if it fixes the issue

    Keep us updated please

    Best regards,
    Basilis

    #748957

    Hi Basilis,

    cleared the browsers cache. made no difference. What is the next step?

    Thanks

    #749172

    Hi,

    On what page are you having problems with content not being saved and how can we reproduce the error?

    Best regards,
    Rikard

    #749176

    Hi,

    the error seems to happen on any page. You can reproduce the error by typing content into the wyswiyg-editor and pressing save. You will find that at times it might save. But more often you have the reenter or paste the content a couple of times before the editor actually saves it.

    Thanks for the help.

    #749692

    Hi,

    to give some additional info. It seems that the text is saving when the ‘text’ editor is used. When the ‘visual’ editor is used, the text does not save.

    Please advise how this can be resolved. Thanks a lot.

    #749723

    Hi,

    Thanks for that, I created a test post and I get the same error. Could you try deactivating all plugins to see if one of them is causing a conflict please?

    Best regards,
    Rikard

    #749755

    Hi Rikard,

    deactivating the plugins did not resolve the issue. What is the next step?

    Thanks so much.

    #750248

    Hi,

    Thanks for the feedback. Could you please try to overwrite the theme files with a fresh copy from your Themeforest account via FTP to see if that helps? http://kriesi.at/documentation/enfold/updating-your-theme-files/

    Best regards,
    Rikard

    #750297

    Hi there,

    installing the theme files again didn’t change anything for me.

    What’s next? I have added ftp details in private content in case you require it.

    Thanks for your help!

    #750806

    Hi,

    I’m not sure to be honest, overwriting the theme files would mean that the problem is not coming from the theme. Could you try reinstalling WordPress in the Dashboard?

    Best regards,
    Rikard

    #750810

    The entire editor actually doesn’t look right. It looks different to all other installs i have going. Can you please have a look?

    #751008

    I reinstalled WP via the dashboard. No change…whats next?

    Many Thanks!

    #751013

    hi, the issue is caused by this:

    /*Defer parsing of JavaScript*/
    add_filter(‘clean_url’,’async_js’,11);
    function async_js($url) {
    if ( false !== strpos( $url, ‘jquery.js’ ) || false === strpos( $url, ‘.js’ )) {
    return $url;
    }
    return “$url’ defer=’defer”;
    }

    Is there a function to achieve the same without causing issues?

    Thanks

    #752796

    Hi,

    Where did you get the code? And why did you add it? Please replace it with the following code:

    // Defer jQuery Parsing using the HTML5 defer property
    if (!(is_admin() )) {
        function defer_parsing_of_js ( $url ) {
            if ( FALSE === strpos( $url, '.js' ) ) return $url;
            if ( strpos( $url, 'jquery.js' ) ) return $url;
            // return "$url' defer ";
            return "$url' defer onload='";
        }
        add_filter( 'clean_url', 'defer_parsing_of_js', 11, 1 );
    }

    // http://www.laplacef.com/2014/05/24/how-to-defer-parsing-javascript-in-wordpress/

    Best regards,
    Ismael

    #752815

    Hi Ismael,

    Josue posted the code here:

    #755282

    Hi,

    it’s an old code and unfortunately Josue is not in our team anymore. Best to remove it and find another solution. Probably you need to hire a freelance developer if you want to replace the current code.

    Best regards,
    Andy

    #799948

    you can close this one

    #800002

    Hi,

    Thanks for that, please open a new thread if you should have any further questions or problems.

    Best regards,
    Rikard

Viewing 19 posts - 1 through 19 (of 19 total)
  • The topic ‘text block – WYSWIYG editor issue’ is closed to new replies.