Hi,
In the cart view you will find:
<span class="hikashop_checkout_cart_shipping">
<php
if(bccomp($taxes,0,5)==0){
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>
So, you can replace it by:
<span class="hikashop_checkout_cart_shipping">
<?php echo $this->currencyHelper->format(@$this->shipping->shipping_price,$this->shipping->shipping_currency_id); ?>
</span>
If you do not want to display tax on shipping.
Regards,