- Статус
- Решено автором
- Связанный плагин/тема
- TheGem
- Теги темы
- Compatibility
Обзор проблемы
При использовании виджета Product Grid из темы оформления TheGem Вы заметите, что атрибуты товаров невозможно перевести.
Обходное решение
Перед продолжением убедитесь, что у Вас есть полная резервная копия сайта.
- Откройте файл 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>