- ステータス
- 開発者により解決済み
- 関連するプラグイン/テーマ
- Essentials
- トピックタグ
- Compatibility, Elementor Custom Widgets
問題の概要
WPMLでEssentialsテーマのpixfort Coreプラグインを使用している場合、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 ); }