- الحالة
- في انتظار المطور
- الإضافة/القالب ذو الصلة
- WP Grid Builder
- وسوم الموضوع
- Compatibility
نظرة عامة على المشكلة
عند استخدام Grid Builder مع WPML وAdvanced Custom Fields (ACF)، توجد مشكلة في Facets عند استخدام حقول مخصصة. على الرغم من أن تسميات حقول ACF مترجمة في الواجهة الخلفية، إلا أنها لا تنعكس في الواجهة الأمامية.
حل بديل مؤقت
يُرجى التأكد من أخذ نسخة احتياطية كاملة لموقعك قبل المتابعة.
لحقول Select
- افتح ملف functions.php الخاص بقالبك.
- أضف الكود التالي:
// WPML Workaround for wpmlsupp-11647 function wpml_wpmlsupp11647_translate_facet_choices( $choices, $facet ) { if ( class_exists('Sitepress') ) { foreach ($choices as &$choice) { $string = $choice->facet_name; $textdomain = 'facets'; $string_name = 'Facet: '.substr($string, 0, 20); if ( apply_filters('wpml_default_language', NULL ) == apply_filters( 'wpml_current_language', NULL )) { do_action( 'wpml_register_single_string', $textdomain, $string_name, $string ); } // Apply the translation to the string $choice->facet_name = apply_filters('wpml_translate_single_string', $string , $textdomain, $string_name); } } return $choices; } add_filter( 'wp_grid_builder/facet/choices', 'wpml_wpmlsupp11647_translate_facet_choices', 10, 2 ); - زُر الصفحة التي تحتوي على Facets باللغة الأصلية لتسجيل السلاسل.
- اذهب إلى صفحة WPML > ترجمة النصوص وترجم السلاسل.
ملاحظة: بناءً على كيفية بناء Facets الخاصة بك، قد يكون هذا المقتطف البرمجي الآخر مفيداً:
// WPML Workaround for compsupp-7453
function wpml_compsupp7453_translate_facet_block_custom_field( $output ) {
if ( class_exists('Sitepress') ) {
if( is_string($output) ) {
$string = $output;
$textdomain = 'facets';
$string_name = 'Facet: '.substr($string, 0, 20);
if ( apply_filters('wpml_default_language', NULL ) == apply_filters( 'wpml_current_language', NULL )) {
do_action( 'wpml_register_single_string', $textdomain, $string_name, $string );
}
// Apply the translation to the string
$output = apply_filters('wpml_translate_single_string', $string , $textdomain, $string_name);
}
}
return $output ;
}
add_filter( 'wp_grid_builder/block/custom_field', 'wpml_compsupp7453_translate_facet_block_custom_field', 99, 2 );