JigoShopは海外のCMSなので住所の表示順が海外仕様です。
それを日本仕様の
郵便番号
都道府県
市
住所
と日本の住所の順番になるように変更する方法をメモします。
JigoShopの住所の順番を日本版に修正する方法
wp-content\plugins\jigoshop\classes
にある
jigoshop_order.class.php
の修正をします。
$address = array_map('trim', array(
$this->shipping_address_1,
$this->shipping_address_2,
$this->shipping_city,
$this->shipping_state,
$country,
$this->shipping_postcode
));
の箇所を探しだして、
$address = array_map('trim', array(
$this->shipping_postcode,
$this->shipping_city,
$this->shipping_address_1,
$this->shipping_address_2,
$this->shipping_state,
$country
));
のように変更します。
請求先住所と、配送先住所がありますので2箇所同じ内容の部分を修正します。
これで完了です。


