Change the tax order

  • Posts: 1086
  • Thank you received: 12
  • Hikashop Business
9 years 2 months ago #226323

-- HikaShop version -- : 2.6.0
-- Joomla version -- : 3.4.8
-- PHP version -- : 5.4

Hello!

At the product page i have both prices displayed (with AND without tax).
The taxed price is first and next to it is the price without tax.
I want the prices to appear at the opposite order, first the non taxed price and then the taxed price.
How can i change that?

Thank you!

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

  • Posts: 83401
  • Thank you received: 13494
  • MODERATOR
9 years 2 months ago #226340

Hi,

You need to edit the file "listing_price" of the view "product".

There, swap $price->price_value_with_tax and $price->price_value

The following user(s) said Thank You: verzevoul

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

  • Posts: 1086
  • Thank you received: 12
  • Hikashop Business
9 years 1 month ago #229062

Hello!

You need to edit the file "listing_price" of the view "product".

There, swap $price->price_value_with_tax and $price->price_value


This works perfectly except from one thing, at the checkout page, at the bottom of the cart , the total ammount price is displayed WITH tax and below that displays the tax ammount (23%) and below the tax displays the full price.

Total ammount should display the price without tax and then the tax ammount and finally tha full price.

See the screenshot,



Regards

Attachments:

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

  • Posts: 83401
  • Thank you received: 13494
  • MODERATOR
9 years 1 month ago #229069

Hi,

In that case, you want to change the line:

echo $this->currencyHelper->format(@$this->total->prices[0]->price_value_with_tax,@$this->total->prices[0]->price_currency_id);
to:
echo $this->currencyHelper->format(@$this->total->prices[0]->price_value,@$this->total->prices[0]->price_currency_id);
in the file "cart" of the view "checkout".

The following user(s) said Thank You: verzevoul

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

Time to create page: 0.067 seconds
Powered by Kunena Forum