VirtueMart Forum

VirtueMart 2 + 3 + 4 => General Questions => Topic started by: croppertiger on November 26, 2012, 12:33:01 PM

Title: Price column doesn't show price on checkout
Post by: croppertiger on November 26, 2012, 12:33:01 PM
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?
Title: Re: Price column doesn't show price on checkout
Post by: jenkinhill on November 26, 2012, 15:14:52 PM
http://forum.virtuemart.net/index.php?topic=79799.0

It looks like your template override files need updating.
Title: Re: Price column doesn't show price on checkout
Post by: croppertiger on November 28, 2012, 14:09:48 PM
I have version 2.0.14.

Do you know which files I could try and replace to see if it makes a difference?
Title: Re: Price column doesn't show price on checkout
Post by: jenkinhill on November 28, 2012, 15:00:15 PM
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
Title: Re: Price column doesn't show price on checkout
Post by: bytelord on November 28, 2012, 15:01:42 PM
Hi,

Also from the backed Configuration-> Prices enable the base price (is for vendors).

Regards
Title: Re: Price column doesn't show price on checkout
Post by: mariosvns on December 09, 2014, 16:07:23 PM
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?
Title: Re: Price column doesn't show price on checkout
Post by: jenkinhill on December 10, 2014, 13:41:17 PM
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->pricesTRUEFALSE) . '</span><br />';
}

if ($prow->prices['discountedPriceWithoutTax']) {
echo $this->currencyDisplay->createPriceDiv ('discountedPriceWithoutTax'''$prow->pricesFALSEFALSE);
} else {
echo $this->currencyDisplay->createPriceDiv ('basePriceVariant'''$prow->pricesFALSEFALSE);
}
?>

</td>
Title: Re: Price column doesn't show price on checkout
Post by: mariosvns on December 10, 2014, 16:33:16 PM
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]
Title: Re: Price column doesn't show price on checkout
Post by: jenkinhill on December 10, 2014, 19:57:50 PM
I'm guessing that you don't have "Discounted Price without tax" set to display in Configuration/Pricing
Title: Re: Price column doesn't show price on checkout
Post by: mariosvns on December 11, 2014, 11:13:48 AM
I found it... The problem was in the shopper group details.
Thanks for the help.