可视化编辑器为空-404用于插件js

时间:2015-08-31 作者:iluvpinkerton

我客户的可视化编辑器不工作。我在控制台中看到大量JS错误。与tiny\\u mce相关的插件文件的所有404个错误。这里有几个:

http://www.livebeautifull.com/wp-content/plugins/wck-custom-fields-and-custom-post-types-creator/assets/datepicker/datepicker.css?ver=4.3 
Failed to load resource: the server responded with a status of 404 (Not Found)
http://www.livebeautifull.com/wp-content/plugins/wck-custom-fields-and-cust…-kit-api/assets/js/tiny_mce/plugins/charmap/plugin.js?wp-mce-4203-20150730 
Failed to load resource: the server responded with a status of 404 (Not Found) tinymce.min.js?ver=4203-20150730:4
有什么想法吗?

1 个回复
SO网友:perdrix

您是否已更新到最新版本的WCK-自定义字段和自定义帖子类型创建者插件?

问题在于WCK-自定义字段和自定义帖子类型创建者插件,您可能应该向它们寻求直接帮助。

https://wordpress.org/plugins/wck-custom-fields-and-custom-post-types-creator/

当我检查插件代码(版本1.1.5)时,我可以在wck fep中看到。php对datepicker的引用。可能导致404错误的css,因为它不存在:

    wp_enqueue_script(\'jquery-ui-datepicker\');      
    wp_enqueue_style(\'jquery-style\', plugins_url( \'\', dirname(__FILE__) ).\'/assets/datepicker/datepicker.css\');
他们在变更日志中声明,他们修复了日期选择器404报告的问题。css在1.1.0版本中,但我仍然可以在wck fep中看到代码。如上所述的php文件。

变更日志还指出,在版本1.0.9中,他们将tinymce插件更改为ckeditor插件。

=1.0.9=*替换wysiwyg编辑器tinymceckeditor 修复WordPress 3.9的兼容性问题

    // wysiwyg              
    wp_register_script( \'wck-ckeditor\', plugins_url( \'\', dirname(__FILE__) ).\'/assets/js/ckeditor/ckeditor.js\', array(), \'1.0\', true );     
不知道为什么您仍然显示它仍然试图访问tinymce,除非您使用的是旧版本的插件。我在当前版本的插件中找不到任何引用。