- סטטוס
- פתוח
- דווח עבור
- WPML Multilingual & Multicurrency for WooCommerce 5.4.5
- תוסף/ערכת עיצוב קשורים
- Product Filters for WooCommerce
- תגיות נושא
- Compatibility, WCML
סקירה כללית של התקלה
בעת שימוש בוידג’ט ”Filter products by attribute” מתוך Product Filters for WooCommerce והגדרת אפשרות התצוגה ל־“Dropdown”, תווית התכונה אינה מתורגמת בחזית האתר (לדוגמה, “Select Color”).
פתרון עוקף
אנא ודא שיש לך גיבוי מלא של האתר שלך לפני שתמשיך.
- הוסף את הקוד הבא לקובץ functions.php של ערכת העיצוב שלך.
/** * Force the translation of product attribute labels on the frontend. */ add_action( 'after_setup_theme', function() { if ( ! is_admin() && ! wpml_is_ajax() && function_exists( 'WPMLContainermake' ) ) { $wcStrings = WPMLContainermake( WCML_WC_Strings::class ); if ( $wcStrings ) { add_filter( 'woocommerce_attribute_taxonomies', [ $wcStrings, 'translate_attribute_taxonomies_labels' ] ); } } } );