Hi,
What this modification does, is that it displays the sub total without VAT instead of with VAT. So you get three rows:
the subtotal without VAT
the taxes
the total amount with VAT
If you want something like that:
the subtotal with VAT
the coupon
the total without VAT
the taxes
the total with VAT
then it will require adding some custom code for "the total without VAT" row as this row doesn't exist.
For example, something like that:
<tr>
<td colspan="<?php echo $colspan; ?>">
</td>
<td class="key">
<label>
Total without VAT
</label>
</td>
<td>
<?php echo $this->currencyHelper->format($this->order->order_full_price-$taxes,$this->order->order_currency_id); ?>
</td>
</tr>
You can for example add that just before:
Please understand that such customization is outside normal user support.