尝试在Elementor中加载模板时遇到问题。模板加载页面停留在加载循环中。
这些是Wordpress-> Elementor->系统信息->调试中的错误
Errors:
TypeError: Cannot read property 'indexOf' of null
at http://localhost/wordpress/wp-content/plugins/elementor/assets/js/editor.min.js?ver=2.1.6 - 2:27412
2018-08-01 15:39 +00:00
TypeError: Cannot read property 'indexOf' of null
at http://localhost/wordpress/wp-content/plugins/elementor/assets/js/editor.min.js?ver=2.1.5 - 2:27412
2018-07-29 15:58 +00:00
x 2 times
答案 0 :(得分:0)
当我遇到同样的问题时,它有助于断开我的基本帐户及其许可证。重新激活还重新激活了与模板库的连接,该连接似乎是与其余elementor插件分开处理的。
答案 1 :(得分:0)
使用Elementor 2.1.4,我无法通过使用“同步库”工具重新安装插件,重新激活许可证,禁用其他插件来解决此问题。
对我有用的是替换
s:10:"categories";N;
使用
s:10:"categories";a:0:{}
在数据库中option_value
表中条目的wp_otions
字段中,
option_name = 'elementor_remote_info_library'
此值会不时更新,因此为避免类别再次设置为null,您可能还想在wp-content/plugins/elementor/includes/api.php@111
之前的update_option( self::LIBRARY_OPTION_KEY, ...)
中注释以下行:
$info_data['library']['categories'] = json_decode( $info_data['library']['categories'] );
这会导致此问题,因为此时类别已经可以使用数组而不是JSON了。