Zen Cart Logo
Forums / Templates, Stylesheets, Page Layout / change order confirmation email product details

change order confirmation email product details

Locked

Views: 2,726

Results 1 to 4 of 4
This thread is locked. New replies are disabled.
5 Apr 2009, 5:28 AM
#1
stormieau avatar

stormieau

New Zenner

Join Date:
Nov 2008
Posts:
16
Plugin Contributions:
0

change order confirmation email product details

Hi,

I'm using Zen Cart 1.3.8a and wanting to change the order confirmation emails so that instead of looking like this:

Products

1 x Kaisercraft Album This Year 2008 (SB172) = $5.00
1 x Kaisercraft Beyond the Page - Desk Calendar (SB2019) = $4.95
1 x Zig Writer - Pure Blue (ZW883) = $3.85

they look like this:

Products

(SB172) 1 x Kaisercraft Album This Year 2008 = $5.00
(SB2019) 1 x Kaisercraft Beyond the Page - Desk Calendar = $4.95
(ZW883) 1 x Zig Writer - Pure Blue = $3.85

i.e. the model number comes first.

If anyone could point me in the right direction, I would much appreciate it,

Thanks,
stormieau

5 Apr 2009, 5:58 AM
#2
haredo avatar

haredo

Totally Zenned

Join Date:
Apr 2006
Location:
Texas
Posts:
6,180
Plugin Contributions:
0

Re: change order confirmation email product details

stormieau:

Hi,

I'm using Zen Cart 1.3.8a and wanting to change the order confirmation emails so that instead of looking like this:

Products

1 x Kaisercraft Album This Year 2008 (SB172) = $5.00
1 x Kaisercraft Beyond the Page - Desk Calendar (SB2019) = $4.95
1 x Zig Writer - Pure Blue (ZW883) = $3.85

they look like this:

Products

(SB172) 1 x Kaisercraft Album This Year 2008 = $5.00
(SB2019) 1 x Kaisercraft Beyond the Page - Desk Calendar = $4.95
(ZW883) 1 x Zig Writer - Pure Blue = $3.85

i.e. the model number comes first.

If anyone could point me in the right direction, I would much appreciate it,

Thanks,
stormieau

St,
includes/ classes/ order.php

  1. there is no override here.
  2. Make sure you have a copy of the original so if this does not work you can replace it
  3. Make good notes so when you upgrade, this is a core file, so you can make changes easily

Find this:

// build output for email notification
$this->products_ordered .= $this->products[$i]['qty'] . ' x ' . $this->products[$i]['name'] . ($this->products[$i]['model'] != '' ? ' (' . $this->products[$i]['model'] . ') ' : '') . ' = ' .
$currencies->display_price($this->products[$i]['final_price'], $this->products[$i]['tax'], $this->products[$i]['qty']) .
($this->products[$i]['onetime_charges'] !=0 ? "\n" . TEXT_ONETIME_CHARGES_EMAIL . $currencies->display_price($this->products[$i]['onetime_charges'], $this->products[$i]['tax'], 1) : '') .
$this->products_ordered_attributes . "\n";
$this->products_ordered_html .=Change to this:
// build output for email notification
($this->products[$i]['model'] != '' ? ' (' . $this->products[$i]['model'] . ') ' : '') . ' = ' . $this->products_ordered .= $this->products[$i]['qty'] . ' x ' . $this->products[$i]['name'] . $currencies->display_price($this->products[$i]['final_price'], $this->products[$i]['tax'], $this->products[$i]['qty']) .
($this->products[$i]['onetime_charges'] !=0 ? "\n" . TEXT_ONETIME_CHARGES_EMAIL . $currencies->display_price($this->products[$i]['onetime_charges'], $this->products[$i]['tax'], 1) : '') .
$this->products_ordered_attributes . "\n";
$this->products_ordered_html .=

27 Apr 2009, 7:46 PM
#3
stormieau avatar

stormieau

New Zenner

Join Date:
Nov 2008
Posts:
16
Plugin Contributions:
0

Re: change order confirmation email product details

Thank you so much :)

27 Apr 2009, 8:03 PM
#4
haredo avatar

haredo

Totally Zenned

Join Date:
Apr 2006
Location:
Texas
Posts:
6,180
Plugin Contributions:
0

Re: change order confirmation email product details

St,
Your Welcome, have you been sleeping for 20 days.. LOL