Checkout total price without taxes

  • Posts: 104
  • Thank you received: 0
11 years 6 months ago #101984

Hi,

In hikashop Taxes configuration I set Show taxed prices- With tax. This is allright but in the checkout I want to show Total price without taxes because the Final total seems strange if you see

Total 100
Shipping 8.50
I.V.A 17.36
Payment fee 5.43

Final total 113.93

The addition is not corect. I know really is correct because hikashop show the total price with taxes but for addition it uses price without taxes.

That is what I want to show. The Total price without taxes so you can see the real addition.

Last edit: 11 years 6 months ago by dyvymtvar.

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

  • Posts: 82760
  • Thank you received: 13346
  • MODERATOR
11 years 6 months ago #102184

Hi,

You can change the code:

						$this->row=$this->total;
						echo $this->loadTemplate();

to:
						$this->params->set('price_with_tax',0);
						$this->row=$this->total;
						echo $this->loadTemplate();
						$this->params->set('price_with_tax',1);
in the file "cart" of the view "checkout" via the menu Display>Views to do that.

The following user(s) said Thank You: dyvymtvar

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

  • Posts: 104
  • Thank you received: 0
11 years 6 months ago #102441

Ok now it is perfect.

Thanks.

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

Time to create page: 0.059 seconds
Powered by Kunena Forum