osc_298
osc_829****@hotma*****
2005年 6月 16日 (木) 19:35:55 JST
こんにちは、真田さま。 過去のメーリングリストでは若干違います。 自分、過去のメーリングリストを参考に変更してきちんと動いてます。 バージョンoscommerce-2.2ms1j-R6a 自分のメモ書きのため行数は参考に includes/functions/general.php 425行目 //// // Return a formatted address // TABLES: address_format function tep_address_format($address_format_id, $address, $html, $boln, $eoln) { $address_format_query = tep_db_query("select address_format as format from " . TABLE_ADDRESS_FORMAT . " where address_format_id = '" . $address_format_id . "'"); $address_format = tep_db_fetch_array($address_format_query); $company = addslashes($address['company']); $firstname = addslashes($address['firstname']); $lastname = addslashes($address['lastname']); $street = addslashes($address['street_address']); $suburb = addslashes($address['suburb']); $city = addslashes($address['city']); $state = addslashes($address['state']); $country_id = $address['country_id']; $zone_id = $address['zone_id']; $postcode = addslashes($address['postcode']); $zip = $postcode; $country = tep_get_country_name($country_id); $state = tep_get_zone_code($country_id, $zone_id, $state); $statename = tep_get_zone_name($country_id,$zone_id,$state); // for Japanese Localize // 2003-06-06 add_telephone $telephone = tep_output_string_protected($address['telephone']); $before = ' 様'; $BEFORE = ' 様'; $YUBINMARK = '〒'; $yubinmark = '〒'; テーブル address_format を開き、address_format_id = 7 のレコードを 編集して、項目 address_format の値に下記のように変更します。 変更後 $lastname $firstname$before$cr$yubinmark$postcode$cr$statename$city$cr$streets$cr$telephone osc_289