标签:des style blog color get strong
一、 后台订单列表grid页
二、 后台订单View页
1) 加入图片预览。
修改 app/design/adminhtml/default/default/template/sales/order/view/items/renderer/default.phtml, 在 <?php if ($this->canDisplayContainer()): ?> 之前插入:
<div style="width:60px;height:60px;float:left;display:inline-block;"> <?php $_product = Mage::getModel(‘catalog/product‘)->load($_item->getProductId());?> <a target="_blank" href="<?php echo $_product->getImageUrl(); ?>"> <img height="60" width="60" src="<?php echo $_product->getThumbnailUrl(); ?>"> </a> </div>
给 magento 后台订单加入详情预览,布布扣,bubuko.com
标签:des style blog color get strong
原文地址:http://www.cnblogs.com/antarctican/p/3794341.html