- 상태
- 미해결
- 보고된 제품
- WPML Multilingual CMS 4.6.13
- 관련 플러그인/테마
- Avada
- 주제 태그
- Compatibility
문제 개요
Avada 테마의 글 템플릿에서 “Gallery Widget”을 사용할 때, ACF Repeater 필드를 통해 동적으로 추가된 이미지(Dynamic Source Option)가 번역 후 두 번째 언어에서 표시되지 않습니다.
임시 해결 방법
진행하기 전에 사이트의 전체 사이트 백업을 완료했는지 확인하세요.
- 테마의 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);