• Resolved rordyd

    (@rordyd)


    woocommers ver3.0.9
    woocommers for japan ver1.2.11

    こちら以前は正しく動作していたかどうか不明なのですが、
    郵便番号を入力した際、都道府県の項目に自動で反映されません。

    スクリプトを見ると
    document.getElementById(“select2-chosen-2”).innerHTML = states[state_id];
    となっていますが、フォーム部分のIDは”select2-chosen-1″になっていたので、これが原因かと思い、
    class-wc-address-field-4jp.php内のコードを以下のように変更したところ郵便番号が自動で出てくる様になりました。

    // Automatic input from postal code to Address for billing
    public function auto_zip2address_billing(){
    $this->auto_zip2address( ‘billing’, 2 );
    }

    ↓↓↓

    // Automatic input from postal code to Address for billing
    public function auto_zip2address_billing(){
    $this->auto_zip2address( ‘billing’, 1 );
    }

    上記の修正方法で正しいのか不明のため、上記不具合についてご確認いただけますでしょうか?

    • This topic was modified 7 years, 5 months ago by rordyd.
Viewing 1 replies (of 1 total)
  • Plugin Author shohei.tanaka

    (@shoheitanaka)

    遅くなりました。
    3.1になった時点でも別の仕様変更があり、似たようなトラブルがありましたが、修正しております。
    ご確認ください。

Viewing 1 replies (of 1 total)
  • The topic ‘郵便番号自動入力が正しく動かない’ is closed to new replies.