Same problem here after I upgraded fromc om_virtuemart.2.0.3.E to com_virtuemart.2.0.3.G
I have Joomla 2.53. I would like to show only one sales price (Which I could in version E). Now I can either show no prices or two prices (final salesprice and salesprice with discount).
This is all I use, it is the final sales price with discount, and no tax added
<?php echo $this->currency->createPriceDiv('priceWithoutTax', 'COM_VIRTUEMART_PRODUCT_SALESPRICE_WITHOUT_TAX', $this->product->prices); ?>
Are you adding this manually to the code?
Thanks,
Ralph
adding, NO
I delete everything else.
My
productdetails/default_pricelist.php
THIS is the WHOLE file
<?php
// Check to ensure this file is included in Joomla!
defined('_JEXEC') or die('Restricted access');
?>
<div class="product-price" id="productPrice<?php echo $this->product->virtuemart_product_id ?>">
<?php
echo $this->currency->createPriceDiv('priceWithoutTax', 'COM_VIRTUEMART_PRODUCT_SALESPRICE_WITHOUT_TAX', $this->product->prices);
?>
</div>