Hi,
- Hikashop Business 1.5.6
- I want to achieve:
1. "inc GST" after the values
2. Change the text as per the blue
3. Remove the GST (Tax) row
I realise this is done by editing checkout / cart.php but I don't want to have to mess with the table widths and I cannot seem to get the "inc GST" as part of say the red value making up the total value. I cannot figure out how to modify the PHP from:
<td class="hikashop_cart_subtotal_value">
<?php
$this->row=$this->total;
echo $this->loadTemplate();
?>
</td>
I then have the same problem getting "inc GST" as part of:
<?php
if(bccomp($taxes,0,5)==0 || !$this->params->get('price_with_tax')){
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);
}
?>
All pointers and help greatly appreciated.