WPML
状态
已由作者解决
相关插件/主题
Essentials
主题标签
Compatibility, Elementor Custom Widgets

问题概述

当将Essentials 主题的 pixfort Core 插件与 WPML 一起使用时,如果使用了Auto Video Elementor 小工具,您可能会遇到致命的 PHP 错误。这会导致出现空白页面或阻止页面加载。错误信息包括:

PHP Fatal error: Uncaught TypeError: Illegal offset type in isset or empty in /sitepress-multilingual-cms/classes/core-abstract-classes/class-wpml-element-translation.php

临时解决方法

在继续操作之前,请确保对您的站点进行完整站点备份


  • 打开 …/wp-content/plugins/pixfort-core/includes/elements/AutoVideo.php 文件。

  • 找到第 85 行。

  • 将:
    $poster = apply_filters( 'wpml_object_id', $poster, 'attachment', true );
            


  • 替换为:
    if ( is_int( $poster ) ) {
    	$poster = apply_filters( 'wpml_object_id', $poster, 'attachment', true );
    }
            

所有已知问题 →