Magento Sales Mail and Order Summary – How to Hide Tax Summary

ce-1.8.1.0magento-1.8pdftax

we running Magento 1.8.1.0 , we need to hidden the following lines (marked in red in the picture) from order summary and sales mail/pdf : Tax and Grand Total to be Charged.

enter image description here

Best Answer

Try to comment the following line from:

app/design/frontend/[interface]/[theme]/template/tax/order/tax.phtml:

<td <?php echo $this->getLabelProperties()?>>
    <?php if ($this->displayFullSummary()): ?>
        <div class="summary-collapse"><?php echo $this->__('Tax'); ?></div>
    <?php else: ?>
        <?php echo $this->__('Tax'); ?>
    <?php endif;?>
</td>
<td <?php echo $this->getValueProperties()?>><?php echo $_order->formatPrice($_source->getTaxAmount()) ?></td>
Related Topic