- ステータス
- 開発者により解決済み
- 関連するプラグイン/テーマ
- 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>