dxwnh157
Forum Replies Created
Viewing 6 replies - 1 through 6 (of 6 total)
-
Forum: Plugins
In reply to: [Carousel Slider] Issue with do_shortcodeYou can solve it by adding the following code to functions.php.
add_filter('carousel_slider_load_scripts', function () { return true; }, 9999);
Forum: Plugins
In reply to: [Japanized For WooCommerce] 名前(よみがな) 部分が姓名とも「姓(ヨミガナ)」私も同様の現象を確認しました。
原因はPHPコードの記述ミスです。バージョンが2.2.1の場合の話ですが、
woocommerce-for-japan/includes/gateways/linepay/class-wc-gateway-linepay.php
の696行目?705行目のコードが該当箇所になります。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; }
暫定措置として修正するならば、次のように699行目と700行目の間に
break;
と一行挿入すれば解決するはずです。switch ($untranslated_text) { case 'First Name (Yomigana)'://Original text of the word you want to change $translated_text = '名(ヨミガナ)';//Text after change break; break; case 'Last Name (Yomigana)'://Original text of the word you want to change $translated_text = '姓(ヨミガナ)';//Text after change break; }
ただし、仮に手ずから修正しても、新バージョンがリリースされてそれインストールした際に、もとに戻ってしまう可能性が高いです。
これを避けるにはそもそも開発者の方に対応してもらう他ありません。I confirmed the fix on ver2.0.10.
Thank you very much.I See. Thank you very much.
- This reply was modified 4 years, 10 months ago by dxwnh157.
Forum: Plugins
In reply to: [WP Cerber Security, Anti-spam & Malware Scan] PHP Notice occurred v8.5.5I confirmed the fix.
Thank you very much.Forum: Plugins
In reply to: [WP Cerber Security, Anti-spam & Malware Scan] PHP Notice occurred v8.5.5I took a screenshot of the scene being debugged with xdebug.
Viewing 6 replies - 1 through 6 (of 6 total)