Hi,
No, it is not a bug. It must be a wrong configuration of your taxes.
Please provide a screenshot of the settings of that 7% product, and a screenshot of what you have in the System>Taxes menu.
There is no total without taxes in the cart. However, if you turn off the "taxes" setting of the cart view in your checkout workflow, in the HikaShop configuration, the subtotal will be displayed without taxes, so you'll have:
- subtotal without taxes
- shipping cost without taxes
- 19% taxes
- 7% taxes
- total with taxes
Otherwise, you could add custom code in the checkout / show_block_cart view file.
There, you can see the total with taxes is displayed with the code:
<!-- TOTAL ROW -->
<?php
if(!empty($this->options['show_price'])) {
?>
<tr>
<td colspan="<?php echo $row_count - 2; ?>" class="hikashop_cart_empty_footer"></td>
<td id="hikashop_checkout_cart_final_total_title" class="hikashop_cart_total_title hikashop_cart_title"><?php
echo JText::_('HIKASHOP_TOTAL');
?></td>
<td class="hikashop_cart_total_value" data-title="<?php echo Jtext::_('HIKASHOP_TOTAL'); ?>">
<span class="hikashop_checkout_cart_final_total"><?php
echo $this->currencyClass->format($displayingPrices->total->price_value_with_tax, $displayingPrices->price_currency_id);
?></span>
</td>
</tr>
<?php
}
?>
<!-- EO TOTAL ROW -->
So, you could copy / paste this code, with something like this:
<!-- TOTAL ROW -->
<?php
if(!empty($this->options['show_price'])) {
?>
<tr>
<td colspan="<?php echo $row_count - 2; ?>" class="hikashop_cart_empty_footer"></td>
<td id="hikashop_checkout_cart_final_total_title" class="hikashop_cart_total_title hikashop_cart_title">total without taxes</td>
<td class="hikashop_cart_total_value" data-title="total without taxes">
<span class="hikashop_checkout_cart_final_total"><?php
echo $this->currencyClass->format($displayingPrices->total->price_value, $displayingPrices->price_currency_id);
?></span>
</td>
</tr>
<?php
}
?>
<!-- EO TOTAL ROW -->