Hi,
I have a problem with the price isn't showing on checkout
(http://i.imgur.com/6f7aA.jpg)
I think it's because on the products themselves, only "sales price" shows, even though the products have all the price fields entered
(http://i.imgur.com/MdScH.jpg)
Any ideas?
http://forum.virtuemart.net/index.php?topic=79799.0
It looks like your template override files need updating.
I have version 2.0.14.
Do you know which files I could try and replace to see if it makes a difference?
That will be the cart template overrides. See the live update information for the changes between versions: http://virtuemart.net/index.php?option=com_content&id=416
Hi,
Also from the backed Configuration-> Prices enable the base price (is for vendors).
Regards
I have the same problem. Price column doesn't show price on checkout...
I use:
Joomla! 3.3.6 Stable
PHP Version 5.3.28
VirtueMart 3.0.2
Any ideas?
Looks like an issue with your template overrides. Check the code for the unit price display, the default_pricelist template has the following code:
<td align="center">
<?php
if (VmConfig::get ('checkout_show_origprice', 1) && $prow->prices['discountedPriceWithoutTax'] != $prow->prices['priceWithoutTax']) {
echo '<span class="line-through">' . $this->currencyDisplay->createPriceDiv ('basePriceVariant', '', $prow->prices, TRUE, FALSE) . '</span><br />';
}
if ($prow->prices['discountedPriceWithoutTax']) {
echo $this->currencyDisplay->createPriceDiv ('discountedPriceWithoutTax', '', $prow->prices, FALSE, FALSE);
} else {
echo $this->currencyDisplay->createPriceDiv ('basePriceVariant', '', $prow->prices, FALSE, FALSE);
}
?>
</td>
Thanks for the reply..
The code in my default_pricelist is the same with the code you give... So is not that the problem. The price was not showing from the very beggining when i installed VM.
See the attachment please.
[attachment cleanup by admin]
I'm guessing that you don't have "Discounted Price without tax" set to display in Configuration/Pricing
I found it... The problem was in the shopper group details.
Thanks for the help.