HI,
I have tried lots of places to fix this:
I would like to display the price on the product page as $40.00 (inc GST)
I have gone into the Language file and changed PRICE_AFTER_TAX=" (incl GST) "
In Display I have selected Show Tax Prices (with tax)
In Detailed tax Display I have selected yes.
At this stage I have not setup any Tax Categories or Rates as we are keeping it to a small zone at this stage and our prices on our products are all listed including GST.
So what am I missing? How do I print that price? I go to my Display/View/Product/listing_ing_title and Price shows as
<!-- PRODUCT PRICE -->
<?php
}
if($this->params->get('show_price','-1')=='-1'){
$config =& hikashop_config();
$this->params->set('show_price',$config->get('show_price'));
}
if($this->params->get('show_price')){
$this->setLayout('listing_price');
echo $this->loadTemplate();
}
?>
What am I missing?