Skip to content

Instantly share code, notes, and snippets.

@felipe-douradinho
Created October 7, 2017 19:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save felipe-douradinho/8a758f8f396acc36b97520234226e207 to your computer and use it in GitHub Desktop.
Save felipe-douradinho/8a758f8f396acc36b97520234226e207 to your computer and use it in GitHub Desktop.
Magento - Show total order weight on main order info page
File: app/design/adminhtml/default/default/sales/order/view/info.phtml
Line (around): 89
<!-- peso total # begin -->
<tr>
<td class="label"><?php echo Mage::helper('sales')->__('Peso Total') ?></td>
<td class="value"><strong><?php echo round($_order->getWeight(),1); echo " Lbs"; ?></strong></td>
</tr>
<!-- peso total # end -->
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment