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 );
    }
            

알려진 모든 문제 →