sunandmoon21 Posted May 31, 2011 Share Posted May 31, 2011 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 taxTotal (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 More sharing options...
humani Posted June 19, 2011 Share Posted June 19, 2011 HiIt'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 More sharing options...
shokinro Posted June 19, 2011 Share Posted June 19, 2011 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 differentI 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 More sharing options...
humani Posted June 19, 2011 Share Posted June 19, 2011 hi shokinroCan u tell me. how I can delete this part. i have a had time to fine the right place and what kodes to delete..*imag att. Link to comment Share on other sites More sharing options...
shokinro Posted June 19, 2011 Share Posted June 19, 2011 can you attached an English version of the screen shot?I can not tell what it is. Link to comment Share on other sites More sharing options...
humani Posted June 19, 2011 Share Posted June 19, 2011 I hope u can use this:1st products in total (excluding tax)200Dkk*12nd products in total (including tax) 250DKK3rd Shipping Total 76Dkk4th Total (excl. tax) 200Dkk <---- same like nr. *15th Total including tax 326DkkAn btw I usering the onepagecheckout multiversion 1.2.2 if u need that info. too. Link to comment Share on other sites More sharing options...
shokinro Posted June 19, 2011 Share Posted June 19, 2011 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 More sharing options...
humani Posted June 19, 2011 Share Posted June 19, 2011 I forgot to tell. It is when the customer download the PDF file. That is that I want to delete in the PDF fil. Link to comment Share on other sites More sharing options...
humani Posted June 30, 2011 Share Posted June 30, 2011 for PS 1.3.1U have to deletelinie: 516 and 517Myn works know. Link to comment Share on other sites More sharing options...
Recommended Posts