mamekichi
@mamekichi on WordPress.org and Slack
- Member Since: July 2nd, 2014
- Website: dip.mamekichi-an.com
Contribution History
mamekichi’s badges:- Translation Contributor
- Translation Editor
-
Posted a reply to お届け先の姓と名の表記が逆になる不具合について, on the site WordPress.org Forums:
横からすみません。私のところでも、少し不自由を感じています。ver2.8.2では姓名と、市区町村、都道府県が逆に表示されます。以下はそのスクリーンショットです。PayPalは使っていません。セキュリティ関係とWoocommerceと本プラグインのみ有効にした状態です。 2.7.17では以下のように表示されていました。こちらの方が日本の習慣に合っていました。 -
Posted a reply to 敬称が付かなくなりました, on the site WordPress.org Forums:
敬称が付かない場合がある原因がわかりました。購入ページにCheckout Blocksを使っていると、class-jp4wc-address-fields.php 内部で、敬称使用のオプションのチェックが行われる前にリターンするように書かれていました。 public function address_formats( $fields ) { // Check if block checkout is… -
Posted a reply to 敬称が付かなくなりました, on the site WordPress.org Forums:
@shoheitanaka さん お世話になっております。結論から言うとこの件、一旦解決済みということにします。私のところで管理している4つのサイトのうち2つで敬称がつくことを確認しました。敬称が付くサイトでは、例として画像を貼ったマイアカウントの部分は、JP4WCの敬称オプションをONにすれば敬称が付きます(ご認識が異なります)。woocommerce->注文->(それぞれの注文の詳細)でも敬称が付きます。メールも同様に敬称が表示されます。しかし、敬称が付かないサイトではいずれも表示されません。プラグインをセキュリティ関連+Woocommerce+JP4WCに絞り、テーマはStorefrontを新たにインストールして、functions.phpはデフォルトのままで試してみましたが、依然として敬称がつきませんでした。キャッシュを削除しても結果は変わりませでした。 -
Posted a reply to 敬称が付かなくなりました, on the site WordPress.org Forums:
@shoheitanaka さん注文編集ページ、メール、マイアカウントページのそれぞれの住所欄です。下記の画像はマイアカウントのページです。"太郎"の後に"様"がありません。2.7.17をインストールすると"様"が付きます。サンクスページについては確認していません。以上よろしくお願いいたします。 -
Posted a reply to 敬称が付かなくなりました, on the site WordPress.org Forums:
先に書いたコードは、ほぼ正常に動くと思いますが、Checkout Blocksのページの場合、住所の編集前のラベル?に"{last_name}(first_name} 様"という変な表示がされるので、以下と置き換えることにしました。 /** * 住所の姓名に「様」を付与する(JSの置換エラーを回避) */add_filter( 'woocommerce_order_formatted_billing_address', 'append_honorific_suffix', 10, 2 );add_filter( 'woocommerce_order_formatted_shipping_address', 'append_honorific_suffix', 10,… -
Posted a reply to 敬称が付かなくなりました, on the site WordPress.org Forums:
とりあえず、以下のようなコードをfunctions.phpに追加して運用しています。 /** * 住所表示フォーマットの姓名の後に「様」を強制的に追加 */add_filter( 'woocommerce_localisation_address_formats', 'custom_add_honorific_suffix_to_address', 99 );function custom_add_honorific_suffix_to_address( $formats ) { // 日本(JP)のフォーマットを書き換え… -
Created a topic, 敬称が付かなくなりました, on the site WordPress.org Forums:
便利なプラグインの開発、サポートありがとうございます 2.8.2にバージョンアップしたところ、敬称(様… -
Posted a reply to Feature Request: PayPay support in WooCommerce Stripe Gateway, on the site WordPress.org Forums:
Hi @saivutukuru Thanks for your quick response! I followed your advice and submitted a request… -
Created a topic, Feature Request: PayPay support in WooCommerce Stripe Gateway, on the site WordPress.org Forums:
Hello WooCommerce team, Stripe announced in April 2… -
Posted a reply to 何回無効にしてもpaidyが有効設定に切り替わる, on the site WordPress.org Forums:
有効化しないようにするとか、管理画面から消す方法は分かりませんが、フロント(購入者側)のページからPaidyを非表示にすることはできます。下記のコードをfunctions.phpに貼ってください。購入者が選んでしまうことは回避できます。 // Blocks 側add_filter('woocommerce_blocks_payment_method_types', function($methods) { unset($methods['paidy']); return $methods;});// クラシックチェックアウト側add_filter('woocommerce_available_payment_gateways', function($gateways) { unset($gateways['paidy']); return $gateways;}); -
Suggested 2 strings on translate.wordpress.org.
-
Posted a reply to 【至急願】代引きの設定項目が消えてしまい困っています, on the site WordPress.org Forums:
こんにちはこちらのプラグインの管理者ではありませんが、私のところでもいつの間にか設定が消えていたので調べたら、下記のドキュメントを見つけました。https://woocommerce.com/document/cash-on-delivery/"オフラインでの支払いを受け取る" のところをクリックすると 代金引換 が表示されます 手数料については、有料のプラグインを使って欲しいということなのでしょう。 -
Posted a reply to 送料の無料設定が使えなくなった, on the site WordPress.org Forums:
こんにちは 似たようなことがあったので、報告しておきます。実際に運用しているサイトでは問題なかったのですが、テスト用のサイトで送料無料の表示が変になっていることに最近気がつきました。現象としては、 合計6,000円以上で送料無料に設定した状態で、合計が10,000円を超えると「送料無料」が表示されずに送料が表示され合算される というものです。 これは、「配送」の「送料無料」で "送料無料の必要条件” を一旦別の条件にして保存し、元の条件に戻して保存するということで解決しました。 -
Posted a reply to 代引き手数料が反映されない, on the site WordPress.org Forums:
@shoheitanaka 様 "配送オプションが、代金引換 設定可能な 宅急便 だけの場合は問題ない"と書きましたが、そうではありませんでした。 「クラシック購入手続き」を表示させ、その後「購入手続き」(Checkout Blocks)に変更した場合は、代引き手数料 が「合計」に加算されます。一旦、他の決済手段を選ぶを代引き手数料は消えますが、再度 代金引換 を選べば合計に表示され加算されます。 しかし、カゴが空の状態から商品をカゴに入れ「クラシック購入手続き」を使わずに「購入手続き」に進んだ場合は 代引き手数料 が合計に表示されません。一旦他の決済手段を選んで再度 代金引換 を選んだ場合も同様に合計に 代引き手数料… -
Posted a reply to 代引き手数料が反映されない, on the site WordPress.org Forums:
@shoheitanaka 様 ありがとうございます。 配送オプションが、代金引換 設定可能な 宅急便 だけの場合は問題ないのですが..... 代金引換の設定をしていない配送(当店の場合は日本郵便の「クリックポスト」)があって、どちらかを購入者が選べる状況では、一旦、宅急便 を選ぶと、その後 クリックポスト に変更しても 代金引換 の決済オプションは残ったままで選択可能で、選択すると合計 に 代引き手数料 が加算されてしまいます。… -
Posted a reply to {last_name} {first_name}様, on the site WordPress.org Forums:
@shoheitanaka 様 確認しました。対応ありがとうございました。 -
Posted a reply to 代引き手数料が反映されない, on the site WordPress.org Forums:
@shoheitanaka 様 Version 2.6.22で調べていますが、「クラシック購入手続き」から「購入手続き」(=Checkout Blocks)に切り替えた直後は 代引き料金 が反映されます。しかし、その後 決済方法をクレジットカードなどに変更しても代引き料金は「合計」に残ったままです。 また、「購入手続き」で最初にクレジットカードなどを選択した後に 代引き を選択した場合、その料金は「合計」に反映されません。 つまり、決済方法の切り替えは「合計」に反映されないということになります。 余談ですが、当方では2つの配送方法を選べるようになっていて、料金が異なります。これらを切り替えた場合は、「合計」にそれぞれが反映されます。 本プラグインというより Woocommerce… -
Posted a reply to {last_name} {first_name}様, on the site WordPress.org Forums:
https://snipboard.io/vj0bYR.jpg https://snipboard.io/cCVyrW.jpg 上手くできているかわかりませんが、スクリーンショットを撮ってみました。 本プラグイン+Woocommerce+セキュリティプラグインの3つだけ有効化しています。テーマで使用しているfunction.phpで住所関連のコードは全てコメントアウトしています。WordPress バージョン 6.7.2 、Japanized for WooCommerce2.6.22 -
Created a topic, {last_name} {first_name}様, on the site WordPress.org Forums:
いつも利用させていただいております。ありがとうございます。さて、Checkout Blocksを設定している… -
Translated 1 string on translate.wordpress.org.
-
Posted a reply to when I click “Edit page” on the cart or checkout page, a critical error occurs, on the site WordPress.org Forums:
Hi @mahfuzurwp Methods 1, 2, and 3 that you taught me failed. However, I discovered… -
Posted a reply to when I click “Edit page” on the cart or checkout page, a critical error occurs, on the site WordPress.org Forums:
The status report shown above was without stripe enabled. Here is the status report when… -
Posted a reply to when I click “Edit page” on the cart or checkout page, a critical error occurs, on the site WordPress.org Forums:
Hi, @shahzeenfarooq @reynierc Some parts have been removed for security reasons. Furthermore, when I replaced… -
Posted a reply to when I click “Edit page” on the cart or checkout page, a critical error occurs, on the site WordPress.org Forums:
I have identified the conditions that cause the crash. If you try to edit the… -
Posted a reply to when I click “Edit page” on the cart or checkout page, a critical error occurs, on the site WordPress.org Forums:
Thank you for the detailed explanation. I was unable to reproduce the problem while changing… -
Created a topic, when I click “Edit page” on the cart or checkout page, a critical error occurs, on the site WordPress.org Forums:
Hello, After logging in as an administrator, when I… -
Created a topic, warning that my password was compromised., on the site WordPress.org Forums:
When I used this plugin, I received a warning that my … -
Created a topic, Browser recognize OTP field as password field, on the site WordPress.org Forums:
Hi, The browser will recognize the OTP input field … -
Created a topic, two requests, on the site WordPress.org Forums:
Hi, Thank you for the great plugin I have two r… -
Translated 7 strings on translate.wordpress.org.
-
Suggested 13 strings on translate.wordpress.org.
-
Translated 165 strings on translate.wordpress.org.
-
Suggested 180 strings on translate.wordpress.org.
-
Translated 108 strings on translate.wordpress.org.
-
Suggested 90 strings on translate.wordpress.org.
-
Created a topic, unable to enter email address, on the site WordPress.org Forums:
Hi ! When a new user tries to enter email address … -
Suggested 138 strings on translate.wordpress.org.
-
Suggested 24 strings on translate.wordpress.org.
-
Posted a reply to QR code is not displayed, on the site WordPress.org Forums:
Hi! @as247 I confirmed that the QR code is displayed. thank you! -
Suggested 6 strings on translate.wordpress.org.
-
Posted a reply to QR code is not displayed, on the site WordPress.org Forums:
This is because the Google APIs QR code generation API has been discontinued. line123 in… -
Created a topic, Great plugin, on the site WordPress.org Forums:
It's a great plugin. However, I will deduct one star b… -
Suggested 2 strings on translate.wordpress.org.
-
Created a topic, QR code is not displayed, on the site WordPress.org Forums:
Hi! There is no problem with authentication using m… -
Suggested 4 strings on translate.wordpress.org.
-
Posted a reply to 設定ページが表示されない, on the site WordPress.org Forums:
こんにちは最新版2.8.4にて設定ページが表示されることを確認しました ありがとうございました -
Created a topic, 設定ページが表示されない, on the site WordPress.org Forums:
こんにちは 素晴らしいプラグインをご提供いただきありがとうございます。 新バージョン2.8.3を… -
Posted a reply to Cannot read properties of undefined (reading ‘match’), on the site WordPress.org Forums:
Hi @shameemreza I tried both 9.0 and 8.9.3 WooCommerce version.I tried changing the theme to… -
Posted a reply to Cannot read properties of undefined (reading ‘match’), on the site WordPress.org Forums:
Thank you @shameemreza I wrote that it only occurs when using Checkout Bloloks. The problem… -
Created a topic, Cannot read properties of undefined (reading ‘match’), on the site WordPress.org Forums:
Hi, After activating the "WooCommerce Stripe Gatewa…
日本語 (Japanese) Plugins Translation Editor - #ja
-
WP 2-step verification
Active Installs: 2,000+