cancel
Showing results for 
Search instead for 
Did you mean: 

admin order view images magento 1.9.4.4

admin order view images magento 1.9.4.4

hello all,

 

i am using magento 1.9.4.4 and i would like to add a column in the order view. i would like that in this column a picture of the product will show that the costumer has orderd. 

 

can anybody tell me how to do this?

 

i know a little about editting XML , PHTML files but do not know much about css and js files so please talk it the easy way Smiley Tongue.

 

 

3 REPLIES 3

Re: admin order view images magento 1.9.4.4

Re: admin order view images magento 1.9.4.4

thank you! i will take a look at it and will let you know if it works for me.

 

thank you very much!

Re: admin order view images magento 1.9.4.4

Spoiler

@Vimal Kumar 

unfortunately it doesn't work for me. I have the feeling that the html codes are not complete either. you might want to take a look at this html code.


<?php /** * Magento * * NOTICE OF LICENSE * * This source file is subject to the Academic Free License (AFL 3.0) * that is bundled with this package in the file LICENSE_AFL.txt. * It is also available through the world-wide-web at this URL: * http://opensource.org/licenses/afl-3.0.php * If you did not receive a copy of the license and are unable to * obtain it through the world-wide-web, please send an email * to license@magento.com so we can send you a copy immediately. * * DISCLAIMER * * Do not edit or add to this file if you wish to upgrade Magento to newer * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magento.com for more information. * * @category design * @package default_default * @copyright Copyright (c) 2006-2020 Magento, Inc. (http://www.magento.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> <?php $_item = $this->getItem() ?> <?php $this->setPriceDataObject($_item) ?> <tr<?php if (!$this->canDisplayGiftmessage()): ?> class="border"<?php endif; ?>> <td> <?php if ($this->canDisplayContainer()): ?> <div id="<?php echo $this->getHtmlId() ?>" class="item-container"> <?php endif; ?> // Load the product object if($_item->getProductType() == 'configurable') { $_product = $_item->getProduct(); } else { $_product = Mage::getModel('catalog/product')->load($_item->getId()); } // If no valid product could be loaded, use the default placeholder image for the product $imgUrl = '/skin/frontend/default/default/images/catalog/product/placeholder/small_image.jpg'; // If a valid product has been loaded, use that product's image if($_product->getId() && $_product->getSmallImage() && $_product->getSmallImage() !== 'no_selection') { $imgUrl = Mage::helper('catalog/image')->init($_product, 'small_image')->resize(135,135); } ?> <img src="<?php echo $imgUrl; ?>" width="135" height="135" alt="" style="float:left;margin-right:2px" /> <div class="item-text"> <?php echo $this->getColumnHtml($_item, 'name') ?> </div> <?php if ($this->canDisplayContainer()): ?> </div> <?php endif ?> </td> <td class="a-center"> <?php $product = Mage::getModel('catalog/product')->setStoreId($_item->getOrder()->getStoreId())->load($_item->getProductId());?> <p align="center"> <img src="<?php echo Mage::helper('catalog/image')->init($product, 'small_image')->resize(75); ?>" width="75" height="75" /> </p> </td> <td class="a-center"><?php echo $_item->getStatus() ?></td> <td class="a-right"><?php echo $this->displayPriceAttribute('original_price') ?></td> <td class="a-right"> <?php if ($this->helper('tax')->displaySalesBothPrices() || $this->helper('tax')->displaySalesPriceExclTax()): ?> <span class="price-excl-tax"> <?php if ($this->helper('tax')->displaySalesBothPrices()): ?> <span class="label"><?php echo $this->__('Excl. Tax'); ?>:</span> <?php endif; ?> <?php if (Mage::helper('weee')->typeOfDisplay($_item, array(0, 1, 4), 'sales', $_item->getStoreId())): ?> <?php echo $this->displayPrices( $_item->getBasePrice()+$_item->getBaseWeeeTaxAppliedAmount()+$_item->getBaseWeeeTaxDisposition(), $_item->getPrice()+$_item->getWeeeTaxAppliedAmount()+$_item->getWeeeTaxDisposition() ); ?> <?php else: ?> <?php echo $this->displayPrices($_item->getBasePrice(), $_item->getPrice()) ?> <?php endif; ?> <?php if (Mage::helper('weee')->getApplied($_item)): ?> <?php if (Mage::helper('weee')->typeOfDisplay($_item, 1, 'sales', $_item->getStoreId())): ?> <small> <?php foreach (Mage::helper('weee')->getApplied($_item) as $tax): ?> <span class="nobr"><?php echo $tax['title']; ?>: <?php echo $this->displayPrices($tax['base_amount'], $tax['amount']); ?></span> <?php endforeach; ?> </small> <?php elseif (Mage::helper('weee')->typeOfDisplay($_item, 2, 'sales', $_item->getStoreId())): ?> <?php foreach (Mage::helper('weee')->getApplied($_item) as $tax): ?> <span class="nobr"><small><?php echo $tax['title']; ?>: <?php echo $this->displayPrices($tax['base_amount'], $tax['amount']); ?></small></span> <?php endforeach; ?> <?php elseif (Mage::helper('weee')->typeOfDisplay($_item, 4, 'sales', $_item->getStoreId())): ?> <small> <?php foreach (Mage::helper('weee')->getApplied($_item) as $tax): ?> <span class="nobr"><?php echo $tax['title']; ?>: <?php echo $this->displayPrices($tax['base_amount'], $tax['amount']); ?></span> <?php endforeach; ?> </small> <?php endif; ?> <?php if (Mage::helper('weee')->typeOfDisplay($_item, 2, 'sales', $_item->getStoreId())): ?> <span class="nobr"><?php echo Mage::helper('weee')->__('Total'); ?>: <?php echo $this->displayPrices( $_item->getBasePrice()+$_item->getBaseWeeeTaxAppliedAmount()+$_item->getBaseWeeeTaxDisposition(), $_item->getPrice()+$_item->getWeeeTaxAppliedAmount()+$_item->getWeeeTaxDisposition() ); ?> </span> <?php endif; ?> <?php endif; ?> </span> <?php endif; ?> <?php if ($this->helper('tax')->displaySalesBothPrices() || $this->helper('tax')->displaySalesPriceInclTax()): ?> <span class="price-incl-tax"> <?php if ($this->helper('tax')->displaySalesBothPrices()): ?> <span class="label"><?php echo $this->__('Incl. Tax'); ?>:</span> <?php endif; ?> <?php $_incl = $this->helper('checkout')->getPriceInclTax($_item); ?> <?php $_baseIncl = $this->helper('checkout')->getBasePriceInclTax($_item); ?> <?php if (Mage::helper('weee')->typeOfDisplay($_item, array(0, 1, 4), 'sales', $_item->getStoreId())): ?> <?php echo $this->displayPrices($_baseIncl + Mage::helper('weee')->getBaseWeeeTaxInclTax($_item), $_incl + Mage::helper('weee')->getWeeeTaxInclTax($_item)); ?> <?php else: ?> <?php echo $this->displayPrices($_baseIncl-$_item->getBaseWeeeTaxDisposition(), $_incl-$_item->getWeeeTaxDisposition()) ?> <?php endif; ?> <?php if (Mage::helper('weee')->getApplied($_item)): ?> <?php if (Mage::helper('weee')->typeOfDisplay($_item, 1, 'sales', $_item->getStoreId())): ?> <small> <?php foreach (Mage::helper('weee')->getApplied($_item) as $tax): ?> <span class="nobr"><?php echo $tax['title']; ?>: <?php echo $this->displayPrices($tax['base_amount_incl_tax'], $tax['amount_incl_tax']); ?></span> <?php endforeach; ?> </small> <?php elseif (Mage::helper('weee')->typeOfDisplay($_item, 2, 'sales', $_item->getStoreId())): ?> <?php foreach (Mage::helper('weee')->getApplied($_item) as $tax): ?> <span class="nobr"><small><?php echo $tax['title']; ?>: <?php echo $this->displayPrices($tax['base_amount_incl_tax'], $tax['amount_incl_tax']); ?></small></span> <?php endforeach; ?> <?php elseif (Mage::helper('weee')->typeOfDisplay($_item, 4, 'sales', $_item->getStoreId())): ?> <small> <?php foreach (Mage::helper('weee')->getApplied($_item) as $tax): ?> <span class="nobr"><?php echo $tax['title']; ?>: <?php echo $this->displayPrices($tax['base_amount_incl_tax'], $tax['amount_incl_tax']); ?></span> <?php endforeach; ?> </small> <?php endif; ?> <?php if (Mage::helper('weee')->typeOfDisplay($_item, 2, 'sales', $_item->getStoreId())): ?> <span class="nobr"><?php echo Mage::helper('weee')->__('Total'); ?>: <?php echo $this->displayPrices($_baseIncl + Mage::helper('weee')->getBaseWeeeTaxInclTax($_item) , $_incl + Mage::helper('weee')->getWeeeTaxInclTax($_item)); ?></span> <?php endif; ?> <?php endif; ?> </span> <?php endif; ?> </td> <td><?php echo $this->getColumnHtml($_item, 'qty') ?></td> <td class="a-right"> <?php if ($this->helper('tax')->displaySalesBothPrices() || $this->helper('tax')->displaySalesPriceExclTax()): ?> <span class="price-excl-tax"> <?php if ($this->helper('tax')->displaySalesBothPrices()): ?> <span class="label"><?php echo $this->__('Excl. Tax'); ?>:</span> <?php endif; ?> <?php if (Mage::helper('weee')->typeOfDisplay($_item, array(0, 1, 4), 'sales', $_item->getStoreId())): ?> <?php echo $this->displayPrices( $_item->getBaseRowTotal()+$_item->getBaseWeeeTaxAppliedRowAmount()+$_item->getBaseWeeeTaxRowDisposition(), $_item->getRowTotal()+$_item->getWeeeTaxAppliedRowAmount()+$_item->getWeeeTaxRowDisposition() ); ?> <?php else: ?> <?php echo $this->displayPrices($_item->getBaseRowTotal(), $_item->getRowTotal()) ?> <?php endif; ?> <?php if (Mage::helper('weee')->getApplied($_item)): ?> <?php if (Mage::helper('weee')->typeOfDisplay($_item, 1, 'sales', $_item->getStoreId())): ?> <small> <?php foreach (Mage::helper('weee')->getApplied($_item) as $tax): ?> <span class="nobr"><?php echo $tax['title']; ?>: <?php echo $this->displayPrices($tax['base_row_amount'], $tax['row_amount']); ?></span> <?php endforeach; ?> </small> <?php elseif (Mage::helper('weee')->typeOfDisplay($_item, 2, 'sales', $_item->getStoreId())): ?> <?php foreach (Mage::helper('weee')->getApplied($_item) as $tax): ?> <span class="nobr"><small><?php echo $tax['title']; ?>: <?php echo $this->displayPrices($tax['base_row_amount'], $tax['row_amount']); ?></small></span> <?php endforeach; ?> <?php elseif (Mage::helper('weee')->typeOfDisplay($_item, 4, 'sales', $_item->getStoreId())): ?> <small> <?php foreach (Mage::helper('weee')->getApplied($_item) as $tax): ?> <span class="nobr"><?php echo $tax['title']; ?>: <?php echo $this->displayPrices($tax['base_row_amount'], $tax['row_amount']); ?></span> <?php endforeach; ?> </small> <?php endif; ?> <?php if (Mage::helper('weee')->typeOfDisplay($_item, 2, 'sales', $_item->getStoreId())): ?> <span class="nobr"><?php echo Mage::helper('weee')->__('Total'); ?>: <?php echo $this->displayPrices( $_item->getBaseRowTotal()+$_item->getBaseWeeeTaxAppliedRowAmount()+$_item->getBaseWeeeTaxRowDisposition(), $_item->getRowTotal()+$_item->getWeeeTaxAppliedRowAmount()+$_item->getWeeeTaxRowDisposition() ); ?> </span> <?php endif; ?> <?php endif; ?> </span> <?php endif; ?> <?php if ($this->helper('tax')->displaySalesBothPrices() || $this->helper('tax')->displaySalesPriceInclTax()): ?> <span class="price-incl-tax"> <?php if ($this->helper('tax')->displaySalesBothPrices()): ?> <span class="label"><?php echo $this->__('Incl. Tax'); ?>:</span> <?php endif; ?> <?php $_incl = $this->helper('checkout')->getSubtotalInclTax($_item); ?> <?php $_baseIncl = $this->helper('checkout')->getBaseSubtotalInclTax($_item); ?> <?php if (Mage::helper('weee')->typeOfDisplay($_item, array(0, 1, 4), 'sales', $_item->getStoreId())): ?> <?php echo $this->displayPrices($_baseIncl + Mage::helper('weee')->getBaseRowWeeeTaxInclTax($_item), $_incl + Mage::helper('weee')->getRowWeeeTaxInclTax($_item)); ?> <?php else: ?> <?php echo $this->displayPrices($_baseIncl-$_item->getBaseWeeeTaxRowDisposition(), $_incl-$_item->getWeeeTaxRowDisposition()) ?> <?php endif; ?> <?php if (Mage::helper('weee')->getApplied($_item)): ?> <?php if (Mage::helper('weee')->typeOfDisplay($_item, 1, 'sales', $_item->getStoreId())): ?> <small> <?php foreach (Mage::helper('weee')->getApplied($_item) as $tax): ?> <span class="nobr"><?php echo $tax['title']; ?>: <?php echo $this->displayPrices($tax['base_row_amount_incl_tax'], $tax['row_amount_incl_tax']); ?></span> <?php endforeach; ?> </small> <?php elseif (Mage::helper('weee')->typeOfDisplay($_item, 2, 'sales', $_item->getStoreId())): ?> <?php foreach (Mage::helper('weee')->getApplied($_item) as $tax): ?> <span class="nobr"><small><?php echo $tax['title']; ?>: <?php echo $this->displayPrices($tax['base_row_amount_incl_tax'], $tax['row_amount_incl_tax']); ?></small></span> <?php endforeach; ?> <?php elseif (Mage::helper('weee')->typeOfDisplay($_item, 4, 'sales', $_item->getStoreId())): ?> <small> <?php foreach (Mage::helper('weee')->getApplied($_item) as $tax): ?> <span class="nobr"><?php echo $tax['title']; ?>: <?php echo $this->displayPrices($tax['base_row_amount_incl_tax'], $tax['row_amount_incl_tax']); ?></span> <?php endforeach; ?> </small> <?php endif; ?> <?php if (Mage::helper('weee')->typeOfDisplay($_item, 2, 'sales', $_item->getStoreId())): ?> <span class="nobr"><?php echo Mage::helper('weee')->__('Total'); ?>: <?php echo $this->displayPrices($_baseIncl + Mage::helper('weee')->getBaseRowWeeeTaxInclTax($_item),$_incl + Mage::helper('weee')->getRowWeeeTaxInclTax($_item)); ?></span> <?php endif; ?> <?php endif; ?> </span> <?php endif; ?> </td> <td class="a-right"><?php echo $this->displayPriceAttribute('tax_amount') ?></td> <td class="a-right"><?php echo $this->displayTaxPercent($_item) ?></td> <td class="a-right"><?php echo $this->displayPriceAttribute('discount_amount') ?></td> <td class="a-right last"> <?php echo $this->displayPrices( $_item->getBaseRowTotal() + $_item->getBaseTaxAmount() + $_item->getBaseHiddenTaxAmount() + Mage::helper('weee')->getBaseRowWeeeAmountAfterDiscount($_item) - $_item->getBaseDiscountAmount(), $_item->getRowTotal() + $_item->getTaxAmount() + $_item->getHiddenTaxAmount() + Mage::helper('weee')->getRowWeeeAmountAfterDiscount($_item) - $_item->getDiscountAmount() ); ?> </td> </tr>