我正在使用Divi构建器创建自定义Wordpress主题,但是当我安装Contact表单7时,我看到我的主页是空白的,并且在控制台上,我看到了这个错误形式的Divi构建器JS。
Uncaught TypeError: Cannot read property 'concat' of undefined
at divi-builder.min.js?ver=2.19.9:95
at divi-builder.min.js?ver=2.19.9:95
at divi-builder.min.js?ver=2.19.9:95
at divi-builder.min.js?ver=2.19.9:95
这是屏幕截图
好运!
谢谢
答案 0 :(得分:0)
Jquery版本的问题。转到主题文件夹,然后在functions.php中添加代码:
function replace_core_jquery_version() {
wp_deregister_script( 'jquery-core' );
wp_register_script( 'jquery-core', "https://code.jquery.com/jquery-3.1.1.min.js", array(), '3.1.1' );
wp_deregister_script( 'jquery-migrate' );
wp_register_script( 'jquery-migrate', "https://code.jquery.com/jquery-migrate-3.0.0.min.js", array(), '3.0.0' );
}
add_action( 'wp_enqueue_scripts', 'replace_core_jquery_version' );
答案 1 :(得分:-1)
如果您想要一个简单的联系表,那么Divi拥有自己的联系表模块,因此您可以创建一个新的联系表而不会发生任何冲突,甚至可以导入带有联系表利基的free Divi layouts。