Magento Backstage Orders originally is not display product picture, customer service business also get the website front desk to look for this product picture to provide to the delivery department, this is very inconvenient. In order to improve the work efficiency, should customer service business requirements, is now the Magento backstage orders to modify, so that the order page shows the product picture.
Open appdesignadminhtmldefaultdefaulttemplatesalesorderviewitems.phtml in <th><span><?php echo $this- >helper (' Sales ')->__ (' Item Status ')?></span></th> preceded by a line of code: <th><span><?php echo $this->helper (' Sales ')->__ (' Product Image ')?></span></th>
Open appdesignadminhtmldefaultdefaulttemplatesalesorderviewitemsrendererdefault.phtml in <td><?php echo $_ Item->getstatus ()?></td> preceded by the following code: <td> <?php $item _id = $_item->getproductid (); $item _imgurl = mage::getbaseurl (' media '). ' Catalog/product '. Mage::getmodel (' catalog/product ')->load ($item _id)->getimage (); ?> <a target= "_blank" href= "<?php echo $item _imgurl;?>" > "></a> </td>
In this way, the background order page will show the product picture.
Magento Background Order Display product image modification method