Jump to content

Total (tax excl.) duplication in cart summary


Recommended Posts

Hi guys,

Since I want to show product prices without tax in my webshop, I adjusted this for my default group. Now customers can see product prices with tax included only in the checkout area. However my problem is that in the checkout area basically there is a duplication of the totals (tax excl.) field.

Here's how my cart summary looks:

Total products (tax excl.):
Total (tax excl.):
Total tax
Total (tax incl.):

As you see there is "Total products (tax excl.)" and "Total (tax excl.)" fields which shows the same information / prices. Now I want to remove either "Total products (tax excl." or "Total (tax excl.)" since I want only 1 of these fields to be displayed in the cart summary. I assume this can't be controlled through the backend, so my question is which code I should modify and what should be deleted in the code, in order to achieve this?

Many thanks.

Link to comment
Share on other sites

  • 3 weeks later...

Hi

It's a bad idea to take it off. It's good for the customer to see how much they paid in tax.
The first is how much it is free of tax and after that, it shows how much tax they paying with the tax and then shipping shows after that.

I have so the problem that I have an extra field, which is the same field like felt nr. 1

Link to comment
Share on other sites

As you see there is “Total products (tax excl.)” and “Total (tax excl.)” fields which shows the same information

they seems the same because you don't have tax in your shipping charges.
if you have shipping charge, then it will be different

I suggest that keep the as it is.

But if you 100% sure there will be no tax on shipping, you can hide or remove from tpl file.
Link to comment
Share on other sites

I hope u can use this:

1st products in total (excluding tax)200Dkk*1
2nd products in total (including tax) 250DKK
3rd Shipping Total 76Dkk
4th Total (excl. tax) 200Dkk <---- same like nr. *1
5th Total including tax 326Dkk

An btw I usering the onepagecheckout multiversion 1.2.2 if u need that info. too.

Link to comment
Share on other sites

the code should be as following file YourSiteRoot/theme/YourSiteTheme/shopping-cart.tpl

            {if $use_taxes}

{l s='Total (tax excl.):'}
{displayPrice price=$total_price_without_tax}


{l s='Total tax:'}
{displayPrice price=$total_tax}


{l s='Total (tax incl.):'}
{displayPrice price=$total_price}

           {else}

{l s='Total:'}
{displayPrice price=$total_price_without_tax}

           {/if}



try to remove the section to see if that it is.

Link to comment
Share on other sites

  • 2 weeks later...
×
×
  • Create New...