products in wishlist price without tax

  • Posts: 252
  • Thank you received: 3
12 years 4 weeks ago #70497

Hello,
When customers are adding product to their wishlist and they look in to their wishlist the prices showing are without Tax.
Can I modify this somewhere?

Attachments:

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

  • Posts: 13201
  • Thank you received: 2322
12 years 4 weeks ago #70552

Hi,

Do you have the last version of HikaShop ?
On my end the price in the wishlist listing in displayed with tax or without tax depending on the configuration.

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

  • Posts: 252
  • Thank you received: 3
12 years 4 weeks ago #70557

Hello Xavier,
I'm working with the 1.6.0 version.
In config - diplay the price is set to incl. Tax (top left)

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

  • Posts: 13201
  • Thank you received: 2322
12 years 4 weeks ago #70671

Hi,

In the view "cart / showcarts" in HikaShop > Display > Views try to replace the code displaying the price by:

						<?php
							$config =& hikashop_config();
							if($config->get('price_with_tax')){
								echo $this->currencyHelper->format($cart->price_with_tax,$cart->currency);
							}
							if($config->get('price_with_tax')==2){
								echo JText::_('PRICE_BEFORE_TAX');
							}
							if($config->get('price_with_tax')==2||!$config->get('price_with_tax')){
								echo $this->currencyHelper->format($cart->price,$cart->currency);
							}
							if($config->get('price_with_tax')==2){
								echo JText::_('PRICE_AFTER_TAX');
							}
						?>

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

Time to create page: 0.059 seconds
Powered by Kunena Forum