No prices shown on store frontpage
Rate this topic: 1.00 out of 6 based on 1 vote(s)
- GK User
- Tue Jan 12, 2016 11:38 pm
- Reply with quote
- Report this post
Hi there,
we are working on a website: http://www.sneakpreview-concepts4you.com/Fusion/
We want to show the prices of the special products on the front (home)page but the won't show up.
Please help us out with this...
regards,
Norbert
we are working on a website: http://www.sneakpreview-concepts4you.com/Fusion/
We want to show the prices of the special products on the front (home)page but the won't show up.
Please help us out with this...
regards,
Norbert
-
- Fresh Boarder
- teitbite
- Fri Jan 15, 2016 7:55 pm
- Reply with quote
- Report this post
Hi
It all depends from price configuration in VM itself. Here is a part of code responsible:
which means that if only price is enabled it will display a sales price. Please try look into VM price settings and if You will have any problems than send me an access to joomla panel.
It all depends from price configuration in VM itself. Here is a part of code responsible:
- Code: Select all
<div class="catProductPrice" id="productPrice<?php echo $product->virtuemart_product_id ?>">
<?php
if ($this->show_prices == '1') {
if ($product->prices['salesPrice']<=0 and VmConfig::get ('askprice', 1) and !$product->images[0]->file_is_downloadable) {
echo JText::_ ('COM_VIRTUEMART_PRODUCT_ASKPRICE');
}
echo $this->currency->createPriceDiv('salesPrice', '', $product->prices);
echo $this->currency->createPriceDiv('taxAmount','TPL_GK_LANG_VM_INC_TAX', $product->prices);
} ?>
</div>
which means that if only price is enabled it will display a sales price. Please try look into VM price settings and if You will have any problems than send me an access to joomla panel.
-
- Moderator
2 posts
• Page 1 of 1