No prices shown on store frontpage

Rate this topic: Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.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
User avatar
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:

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.
User avatar
Moderator


cron
Remember me
Register New Account
If you are old Gavick user, click HERE for steps to retrieve your account.