Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #1318469

    Hi,

    After the last update of Enfold I receive this error when editing a page with the builder: Failed to load plugin url: https://xxxxx/wp-includes/js/tinymce/langs/nl.js.
    WordPress language is set to Dutch. The file wp-includes/js/tinymce/langs/nl.js is not present in the WP installation. When I set the WP language to English the error is not there.

    Is this an Enfold issue? How can I fix this?

    Cheers,
    Jaap

    #1318475

    Hey Jaap,

    Thanks for contacting us!

    Do you also get the same error on default editor? If so, could you please try switching to a default theme temporarily and check if you get the same error on default theme?

    Regards,
    Yigit

    #1318485

    Hi Yigit,
    I switched to default theme, no error.
    Cheers,
    Jaap

    #1318491

    Hi Jaap,

    Could you please create temporary admin logins and post them here privately so we can look into it? :)

    Best regards,
    Yigit

    #1318593
    This reply has been marked as private.
    #1318652

    Hi Jaap,

    I commented out following code in functions.php file of your child theme and that helped

    function defer_parsing_of_js ( $url ) {
    if ( FALSE === strpos( $url, '.js' ) ) return $url;
    if ( strpos( $url, 'jquery.js' ) ) return $url;
    return "$url' defer ";
    }
    add_filter( 'clean_url', 'defer_parsing_of_js', 11, 1 );

    I also de-activated Klassieke editor plugin and chose to use classic editor in Enfold theme options instead.

    Please review your website :)

    Best regards,
    Yigit

Viewing 6 posts - 1 through 6 (of 6 total)
  • You must be logged in to reply to this topic.