- ステータス
- 解決済み
- 報告対象
- WPML Multilingual CMS 4.5.2
- 解決されたバージョン
- 4.5.3
- 関連するプラグイン/テーマ
- Elementor
問題の概要
Elementorページ内にImage Carouselウィジェットがあり、そこに予期しない値が含まれている場合、ページを翻訳しようとするとエラーが発生する可能性があります。
回避策
次を開きます:/wp-content/plugins/sitepress-multilingual-cms/addons/wpml-page-builders/classes/Integrations/Elementor/class-wpml-elementor-translatable-nodes.php
44行目付近の以下のコードを:
$string_value = Obj::path( $pathInArrayField, $element );
次のように変更します:
$string_value = Obj::pathOr( null, $pathInArrayField, $element );