Wp Visual composser没有显示

时间:2017-04-06 15:44:55

标签: wordpress webpage visual-composer

我试图卸载并重新安装视觉作曲家,我似乎无法解决它,我无法编辑前端,因为它根本没有显示。我安装了ken主题。在检查控制台的时候我得到了这个错误,但我在编程方面几乎没有任何过期,我不知道该怎么做。

Uncaught TypeError: $template.get is not a function
    at n.html2element (composer-view.js:146)
    at n.render (composer-view.js:157)
    at n.appendShortcode (composer-view.js:534)
    at n.<anonymous> (composer-view.js:477)
    at load-scripts.php:112
    at Function.m.each.m.forEach (load-scripts.php:112)
    at n.addChild (composer-view.js:476)
    at n.addAll (composer-view.js:470)
    at _ (load-scripts.php:457)
    at m (load-scripts.php:457)

请帮助。

1 个答案:

答案 0 :(得分:1)

这基本上意味着你必须更新视觉作曲家。我也遇到了很多问题。通过修改可视化合成器文件中的代码可以有多种方法来解决这个问题,这是不推荐的。所以我个人建议你好好更新你的视觉作曲家然后它完美的工作。

修改网址的文件是:

/wp-content/plugins/js_composer/assets/js/dist/backend.min.j‌​s

要替换的代码是:

html2element: function(html) {
        var $template, attributes = {},
            template = html;
        $template = $(template(this.model.toJSON()).trim()), _.each($template.get(0).attributes, function(attr) {
            attributes[attr.name] = attr.value
        }), this.$el.attr(attributes).html($template.html()), this.setContent(), this.renderContent()
    },

请仅更改“html2element”功能。希望这对你有用。

由于