If I click on the small cart icon the included products are show. Here the prices without tax are shown next to the products (wrong) and at the end the final price including tax (correct).
How can I show the prices including tax everywhere?
<span class="gkPrice num<?php echo $iteration%3; ?>"><?php echo str_replace(' ', '', $product['prices']); ?></span>
<span class="gkPrice num<?php echo $iteration%3; ?>"><?php echo str_replace(' ', '', $product['prices']+$product['subtotal_tax_amount']); ?></span>