姓名表示バグ
-
switch文のcaseの最後に break が入っていません。
そのせいで’名(ヨミガナ)’であるはずのラベルが’姓(ヨミガナ)’になってしまっています。
こちらのトピックも当バグによる現象だと見受けられます。修正は極めて容易であるので、お手数かとは思いますがお早めの対応をお願いいたします。
v2.2.1
woocommerce-for-japan/includes/gateways/linepay/class-wc-gateway-linepay.php:696public function change_hiragana_validation($translated_text, $untranslated_text, $domain){ switch ($untranslated_text) { case 'First Name (Yomigana)'://Original text of the word you want to change $translated_text = '名(ヨミガナ)';//Text after change break; case 'Last Name (Yomigana)'://Original text of the word you want to change $translated_text = '姓(ヨミガナ)';//Text after change break; } return $translated_text; }
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘姓名表示バグ’ is closed to new replies.