- 상태
- 해결됨
- 보고된 제품
- WPForms Multilingual 0.5.0
- 해결된 버전
- WPForms Multilingual 0.5.1
- 관련 플러그인/테마
- WPForms
- 주제 태그
- Compatibility
문제 개요
WPML과 함께 WPForms 설문조사 및 투표를 사용할 때 일부 문자열을 번역할 수 없는 문제가 발생할 수 있습니다. 이는 Net Promoter 필드 레이블 및 페이지 나누기 진행률 표시줄 텍스트에 영향을 미칠 수 있습니다.
임시 해결 방법
진행하기 전에 전체 사이트 백업을 완료했는지 확인하세요.
- 테마의 functions.php 파일에 다음 코드를 추가하세요.
add_filter( 'wpml_forms_config_wpforms', function ( array $config ): array { $config['field']['lowest_label'] = [ 'type' => 'STRING', 'properties' => 'lowest_label', ]; $config['field']['highest_label'] = [ 'type' => 'STRING', 'properties' => 'highest_label', ]; $config['field']['progress_text'] = [ 'type' => 'STRING', 'properties' => 'progress_text', ]; return $config; } ); - 원본 양식을 편집하고 다시 저장하세요.
- 번역을 업데이트하세요.