- סטטוס
- פתוח
- דווח עבור
- WPML Multilingual CMS 4.6.13
- תוסף/ערכת עיצוב קשורים
- Avada
- תגיות נושא
- Compatibility
סקירה כללית של התקלה
בערכת העיצוב Avada, בעת שימוש ב־”Gallery Widget” בתוך תבנית פוסט, תמונות שנוספו באופן דינמי (Dynamic Source Option) באמצעות שדה ACF Repeater לא מוצגות בשפה המשנית לאחר התרגום.
פתרון עוקף
אנא ודא שיש לך גיבוי מלא של האתר שלך לפני שתמשיך.
- פתח את הקובץ 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);