`
ihuashao
  • 浏览: 4563692 次
  • 性别: Icon_minigender_1
  • 来自: 济南
社区版块
存档分类
最新评论

Zencart后台定单里出现产品图片

阅读更多

1、打开admin目录里的orders.php文件,查找:
for ($i=0, $n=sizeof($order->products); $i<$n; $i++) {
echo ' <tr class="dataTableRow">' . "\n" .
' <td class="dataTableContent" valign="top" align="right">'
在后面添加:
. '<img src=../images/' . $order->products[$i]['image'] . ' align=top height="50">'

后面的值可以按自己的要求调整高宽, html的img用法:<img src='' width='' height=''>

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
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 . " p
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、完成。

4、步骤1也可以在admin/packingslip.php 中实现.

分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics