- 状态
- 未解决
- 报告针对
- WPML Multilingual & Multicurrency for WooCommerce 5.4.5
- 相关插件/主题
- Product Filters for WooCommerce
- 主题标签
- Compatibility, WCML
问题概述
当使用 Product Filters for WooCommerce 的“Filter products by attribute”小工具,并将显示选项设置为“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' ] ); } } } );