Hi,
That's the code for the taxes:
if(!empty($this->options['show_price']) && $taxes > 0){
if($this->config->get('detailed_tax_display') && isset($cart->full_total->prices[0]->taxes)) {
foreach($cart->full_total->prices[0]->taxes as $tax) {
?>
<tr>
<td colspan="<?php echo $row_count - 2; ?>" class="hikashop_cart_empty_footer"></td>
<td id="hikashop_checkout_cart_tax_title" class="hikashop_cart_tax_title hikashop_cart_title"><?php
echo $tax->tax_namekey;
?></td>
<td class="hikashop_cart_tax_value" data-title="<?php echo $tax->tax_namekey; ?>">
<span class="hikashop_checkout_cart_taxes"><?php
echo $this->currencyClass->format($tax->tax_amount, $cart->full_total->prices[0]->price_currency_id);
?></span>
</td>
</tr>
<?php
}
} else {
?>
<tr>
<td colspan="<?php echo $row_count - 2; ?>" class="hikashop_cart_empty_footer"></td>
<td id="hikashop_checkout_cart_tax_title" class="hikashop_cart_tax_title hikashop_cart_title"><?php
echo JText::_('TAXES');
?></td>
<td class="hikashop_cart_tax_value" data-title="<?php echo Jtext::_('TAXES'); ?>">
<span class="hikashop_checkout_cart_taxes"><?php
echo $this->currencyClass->format($taxes, $cart->full_total->prices[0]->price_currency_id);
?></span>
</td>
</tr>
<?php
}
}
If you want to move taxes just after the subtotal, you can move that block of code just before that line:
if(!empty($this->options['show_price']) && !empty($cart->coupon)) {