[转]magento 后台订单显示产品小图片

app/design/adminhtml/default/default/template/sales/order/view/items/renderer

default.phtml

在</tr>前加入

    <td class="a-right " width="70">
    <?php
$result = Mage::getModel('catalog/product')->load($_item->getProductId());
$_img = '<img src="'.$this->helper('catalog/image')->init($result, 'thumbnail')->resize(70).'"/>';
    echo '<a target="_Blank" href="'.$this->helper('catalog/image')->init($result, 'thumbnail')->resize(300).'">'.$_img.'</a>';
  
?>
    </td>

原文链接:https://blog.csdn.net/chbklmt/article/details/60957060

 

posted @ 2021-06-22 10:12  ec04  阅读(44)  评论(0编辑  收藏  举报