- ステータス
- 未解決
- 報告対象
- WPML Multilingual CMS 4.6.13
- 関連するプラグイン/テーマ
- Avada
- トピックタグ
- Compatibility
問題の概要
Avadaテーマでは、投稿テンプレート内で「Gallery Widget」を使用すると、ACFリピーターフィールドを通じて動的に追加された画像(Dynamic Sourceオプション)が、翻訳後に第2言語で表示されません。
回避策
続行する前に、必ずサイトの完全なバックアップを取得してください。
- テーマのfunctions.phpファイルを開きます。
- 次のスニペットを追加します。
// WPML Workaround for compsupp-7640 function wpml_compsupp7640_filter_fusion_gallery_image_shortcode($out, $pairs, $atts) { if (isset($atts['image_id']) && $atts['image_id'] == 0 && !empty($atts['image'])) { $atts['image_id'] = ''; } // Re-build the shortcode output with the modified attributes $out = shortcode_atts($pairs, $atts); return $out; } add_filter('shortcode_atts_fusion_gallery_image', 'wpml_compsupp7640_filter_fusion_gallery_image_shortcode', 10, 3);