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
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
Hi Yigit,
I switched to default theme, no error.
Cheers,
Jaap
Hi Jaap,
Could you please create temporary admin logins and post them here privately so we can look into it? :)
Best regards,
Yigit
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