Seiji Sogabe
sogab****@alles*****
2006年 2月 1日 (水) 18:26:48 JST
曽我部です。 kenny wrote: > 日本語と英語のショッピングサイトを運営しています。 (現地価格の)$をデフォ > ルトにしているため、最初の通貨表記が$になっています。 これを日本円で表記さ > せ、後の決済も全て日本円にしたいので、過去ログを捜してみたのですが、[通貨US$ > 設定で円の参考表記] 、と参考になりませんでした。 現地価格を参考にさせたいた > め、$表記は残したいのです。 やりたいことは、 (1) US$をデフォルトとする。(商品の金額はUS$で登録) (2) 商品の値段は、日本円とUS$を表示 (3) 決済は必ず日本円 ということでしょうか。 であれば、 http://lists.sourceforge.jp/mailman/archives/tep-j-general/2004-October/014458.html とあまり変わらないと思うのですが、 catalog/includes/classes/currencies.php の 68行目 function display()を function display_price($products_price, $products_tax, $quantity = 1) { $price = $this->format(tep_add_tax($products_price, $products_tax) * $quantity); $price .= " (" . $this->format( tep_add_tax($products_price, $products_tax) * $quantity, true, 'USD') . ")"; return $price; } に変更 includes/application_top.php の最後に $currency = 'JPY'; を追加でどうでしょうか。 -- sogab****@alles*****