WPML
상태
개발자가 해결함
해결된 버전
YITH Request a Quote for WooCommerce 2.37.0
관련 플러그인/테마
YITH WooCommerce Request a Quote
주제 태그
Compatibility, WCML

문제 개요

YITH Request a Quote for WooCommerce 플러그인을 사용할 때, “Request a Quote” 페이지의 모바일 보기에서 “Product” 및 “Quantity”와 같은 일부 문자열이 번역되지 않습니다.

임시 해결 방법

진행하기 전에 사이트의 전체 백업을 생성했는지 확인하세요.


  • …/wp-content/plugins/yith-woocommerce-request-a-quote/templates/request-quote-view.php 파일을 여세요.

  • 67번째 줄을 찾으세요.

  • 변경 전:
    					<td class="product-name" data-title="Product">

  • 변경 후:
    					<td class="product-name" data-title="<?php esc_attr_e( 'Product', 'woocommerce' ); ?>">

  • 같은 파일에서 132번째 줄을 찾으세요.

  • 변경 전:
    					<td class="product-quantity" data-title="Quantity">

  • 변경 후:
    					<td class="product-quantity" data-title="<?php esc_attr_e( 'Quantity', 'woocommerce' ); ?>">

알려진 모든 문제 →