Make a backup of your includes/classes/order.php file (and a very good one).
Then. find:
PHP Code:
$orders_products_query = "select orders_products_id, products_id, products_name,
products_model, products_price, products_tax,
products_quantity, final_price,
onetime_charges,
products_priced_by_attribute, product_is_free, products_discount_type,
products_discount_type_from
from " . TABLE_ORDERS_PRODUCTS . "
where orders_id = '" . (int)$order_id . "'";
$orders_products = $db->Execute($orders_products_query);
replace with:
PHP Code:
$orders_products_query = "select tpo.orders_products_id, tpo.products_id, tpo.products_name,
tpo.products_model, tpo.products_price, tpo.products_tax,
tpo.products_quantity, tpo.final_price,
tpo.onetime_charges,
tpo.products_priced_by_attribute, tpo.product_is_free, tpo.products_discount_type,
tpo.products_discount_type_from, tpd.products_description
from (" . TABLE_ORDERS_PRODUCTS . " tpo, " . TABLE_PRODUCTS_DESCRIPTION . " tpd)
where tpo.orders_id = '" . (int)$order_id . "'";
$orders_products = $db->Execute($orders_products_query);
Then, find:
PHP Code:
'products_discount_type_from' => $orders_products->fields['products_discount_type_from']);
replace with:
PHP Code:
'products_discount_type_from' => $orders_products->fields['products_discount_type_from'],
'products_description' => $orders_products->fields['products_description']);
Then, find:
PHP Code:
'<td>' . $currencies->display_price($this->products[$i]['onetime_charges'], $this->products[$i]['tax'], 1) : '') .
'</td></tr>';
replace with:
PHP Code:
'<td>' . $currencies->display_price($this->products[$i]['onetime_charges'], $this->products[$i]['tax'], 1) : '') .
'</td></tr>' .
'<tr><td>' . TEXT_EMAIL_PRODUCTS_DESCRIPTION . '</td></tr>' .
'<tr><td>' . $this->products[$i]['products_description'] . '</td></tr>';
Then, in your includes/languages/english.php file,
find:
PHP Code:
define('TEXT_ONETIME_CHARGES_EMAIL',"\t" . '*onetime charges = ');
add right below:
PHP Code:
define('TEXT_EMAIL_PRODUCTS_DESCRIPTION', 'Products description');
Test your order (as a test order at least) and see the results. ;)