- 状态
- 未解决
- 报告针对
- WPML Multilingual CMS 4.6.13
- 相关插件/主题
- Avada
- 主题标签
- Compatibility
问题概述
在Avada主题中,当在文章模板内使用“Gallery 小工具”时,通过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);