Removing VAT from product list

  • Posts: 5
  • Thank you received: 0
7 years 6 months ago #249967

-- url of the page with the problem -- : ssniles.homefieldtech.com/
-- HikaShop version -- : 2.6.3
-- Joomla version -- : 3.6.2

Is there a way to remove VAT from the product list in the back end and just have it show under additional information? and also not included in the total under product list?



Attachments:

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

  • Posts: 81361
  • Thank you received: 13037
  • MODERATOR
7 years 6 months ago #249976

Hi,

You'll have to edit the file show_products via the menu Display>Views
There, you can remove the line:

echo '<br/>'.JText::sprintf('PLUS_X_OF_VAT', $this->currencyHelper->format($product->order_product_tax, $this->order->order_currency_id));
And change the line:
<?php echo $this->currencyHelper->format($product->order_product_total_price, $this->order->order_currency_id);?>
to:
<?php echo $this->currencyHelper->format($product->order_product_price*$product->order_product_quantity, $this->order->order_currency_id);?>

The following user(s) said Thank You: koda279

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

Time to create page: 0.067 seconds
Powered by Kunena Forum