The tax category is set and everything is working fine from the calculation point of view, I just want to change the way the shipping is displayed in the cart from without taxes to with taxes.
This code in the checkout/cart view appears to give you the options of how it is displayed
<span class="hikashop_checkout_cart_shipping">
<?php
if(bccomp($taxes,0,5)){
echo $this->currencyHelper->format(@$this->shipping->shipping_price,$this->shipping->shipping_currency_id);
}else{
echo $this->currencyHelper->format(@$this->shipping->shipping_price_with_tax,$this->shipping->shipping_currency_id);
}
?>
</span>
but I cant work out where the options is on how to display it.