WPML
상태
개발자가 해결함
관련 플러그인/테마
TheGem
주제 태그
Compatibility

문제 개요

TheGem ThemeProduct 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>

알려진 모든 문제 →