1、打开admin目录里的orders.PHP文件,查找:
for ($i=0, $n=sizeof($order->products); $i<$n; $i++) {
echo ‘ ’ . “n”
‘ ’
在后面添加:
‘products[$i]['image'] . ‘ align=top>’
2、打开admin/includes/classes目录里的order.php文件,查找:
$orders_products = $db->Execute(“select orders_products_id, products_name, products_model,
products_price, products_tax, products_quAntity
final_price, onetime_charges,
product_is_free $7i[7S4
from ” . TABLE_ORDERS_PRODUCTS . ”
where orders_id = ‘” . (int)$order_id . “‘”);
替换为:
$orders_products = $db->Execute(“select o.orders_products_id, o.products_id, o.products_name, o.products_model,
o.products_price, o.products_tax, o.products_quantity,
o.final_price, o.onetime_charges,
o.product_is_free, p.products_id, p.products_image
from ” . TABLE_ORDERS_PRODUCTS . ” o, ” . TABLE_PRODUCTS . ”
where o.orders_id = ‘” . (int)$order_id . “‘ and o.products_id = p.products_id”);
查找:
name’ => $orders_products->fields['products_name'],
在后面添加:
‘image’ => $orders_products->fields['products_image'],
3、完成。