hamada
bungu****@leo*****
2005年 6月 20日 (月) 15:18:38 JST
こんにちわ。 On Mon, 20 Jun 2005 13:13:28 +0900 shellac <shell****@yahoo*****> wrote: > 上のままだとちょっと味気ないので例えば次のように見やすく並び替え出来たらいいと思っております。 > ---------------------------------------------------------------------------- > 商品名:□□□□□□□ > 型番:○○○○ > 税込価格:1,000円 > 数量:x 1 > 備考:オプション > ---------------------------------------------------------------------------- > 小計: 3,000円 /catalog/checkout_process.php > $email_order .= EMAIL_TEXT_PRODUCTS . "\n" . > EMAIL_SEPARATOR . "\n" . > $products_ordered . > EMAIL_SEPARATOR . "\n"; 書き換えたいのは(セパレーターに挟まれた)$products_ordered相当部だけみ たいですから、 > $products_ordered_attributes .= "\n\t" . $attributes_values['products_options_name'] . ' ' . $attributes_values['products_options_values_name']; > $products_ordered .= $order->products[$i]['qty'] . ' x ' . $order->products[$i]['name'] . ' (' . $order->products[$i]['model'] . ') = ' . $currencies->display_price($order->products[$i]['final_price'], $order->products[$i]['tax'], $order->products[$i]['qty']) . $products_ordered_attributes . "\n"; ↑この2行を、適当に書き換えれば宜しいんじゃないでしょか? ちなみに"\n"は改行、"\t"はタブですので $products_ordered_attributes .= "\n備考:" . $attributes_values['(以下略) 「備考:」部は、↑こんな感じになるかと→以下同様に。 はまだ