WPML
الحالة
مفتوحة
أُبلغ عنها لـ
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);

جميع المشاكل المعروفة →