Tax on shipping in checkout

  • Posts: 43
  • Thank you received: 0
13 years 6 months ago #16472

Hi,

I'd like to remove the tax from the shipping at the end of the cart as per the image below so that it all adds up to the final total but I cannot find the setting anywhere?


The shipping is actually $12 but shows including the tax which means the total is not correct if you add up the amounts shown.

HH.


always look on the bright side....
Attachments:
Last edit: 13 years 6 months ago by HappyHammer.

Please Log in or Create an account to join the conversation.

  • Posts: 26158
  • Thank you received: 4028
  • MODERATOR
13 years 6 months ago #16479

Hi,

You have to edit the cart view.
Use the menu "Display => View" and open "checkout - cart".
You can use "cart" as filter in order to find it faster.

Regards,


Jerome - Obsidev.com
HikaMarket & HikaSerial developer / HikaShop core dev team.

Also helping the HikaShop support team when having some time or couldn't sleep.
By the way, do not send me private message, use the "contact us" form instead.

Please Log in or Create an account to join the conversation.

  • Posts: 43
  • Thank you received: 0
13 years 6 months ago #16483

Hi Jerome,

Sorry but I'm not that familiar with code to be able to see what to chnage can you tell which code needs to be changed and to what please?

HH.


always look on the bright side....

Please Log in or Create an account to join the conversation.

  • Posts: 26158
  • Thank you received: 4028
  • MODERATOR
13 years 6 months ago #16484

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,


Jerome - Obsidev.com
HikaMarket & HikaSerial developer / HikaShop core dev team.

Also helping the HikaShop support team when having some time or couldn't sleep.
By the way, do not send me private message, use the "contact us" form instead.
Last edit: 13 years 6 months ago by Jerome.

Please Log in or Create an account to join the conversation.

  • Posts: 43
  • Thank you received: 0
13 years 6 months ago #16488

Thanks, all good now.

HH.


always look on the bright side....

Please Log in or Create an account to join the conversation.

Time to create page: 0.061 seconds
Powered by Kunena Forum