- 状态
- 已由作者解决
- 相关插件/主题
- TheGem
- 主题标签
- Compatibility
问题概述
使用 TheGem Theme 的 Product Grid 小工具时,您会发现产品属性无法翻译。
临时解决方法
在继续操作之前,请确保对您的站点进行完整备份。
- 打开 app/public/wp-content/themes/thegem-elementor/gem-templates/products-extended/content-product-grid-item.php 文件。
- 找到第 102 行。
- 将:
<span class="attribute-name text-body-tiny"><?php echo $attribute_data->name; ?>:</span>
- 替换为:
<?php // WPML Workaround for compsupp-7150 $attribute_name = apply_filters('wpml_translate_single_string', $attribute_data->name , 'WordPress', 'taxonomy singular name: '.$attribute_data->name ); ?> <span class="attribute-name text-body-tiny"><?php echo $attribute_name; ?>:</span>