Magento – How to remove TOTAL EXCL TAX from cart review page

cartcheckoutorderstax

In Magento by default the review page displays the Cart TOTAL EXCL TAX and Cart TOTAL INCL TAX.

Due to the way I've configured Magento (everything including tax), the EXCL TAX and INCL TAX values are identical (which could be confusing for customers).

Does anyone know of a way to remove the EXCL TAX line from the cart review page?
(I can't seem to find a configuration option for it anywhere).

Best Answer

Found how to do this (programatically)....

Under {magento_base}/app/design/frontend/base/default/template/tax/checkout/

Edit file grandtotal.phtml
(I suggest you make a backup of the file just in case).

Find the line:

<?php if ($this->includeTax() && $this->getTotalExclTax()>=0):?>

Delete the subsequent lines:

<tr>
    <td style="<?php echo $this->getStyle() ?>" class="a-right" colspan="<?php echo $this->getColspan(); ?>">
        <strong><?php echo $this->helper('tax')->__('Grand Total Excl. Tax')?></strong>
    </td>
    <td style="<?php echo $this->getStyle() ?>" class="a-right">
        <strong><?php echo $this->helper('checkout')->formatPrice($this->getTotalExclTax()) ?></strong>
    </td>
</tr>

This change means it will now only show the tax inclusive line in the cart review.

Hope this helps someone else!