No price in category view

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
Fri Oct 04, 2013 5:26 pm
Reply with quote
Report this post
Hi, I have a problem. :(
In virtuemart category view I cannot see prices.
In product view the price look well.
I'm using the last version of virtuemart (2.024) and I configured virtuemart like a catalogue, with two user-group and two different prices (one for group).

Can you help me.

Thanks in advance.
Fabio
User avatar
Fresh Boarder

GK User
Sat Oct 05, 2013 3:07 am
Reply with quote
Report this post
What is your pricing setup.

Base Price?
Base Price with Tax?
Sale Price
Discounted Price.

This all depends on your pricing structure.

Post your website link so we can advice further.

See you around...
User avatar
Platinum Boarder

GK User
Sat Oct 05, 2013 3:47 pm
Reply with quote
Report this post
Hi Norman,
my pricing setup is only "Final salesprice".

Just I need to show it.

This is the url test2.sydoniaproduction.it but to see prices you must login in.

#Edit by Norman: For security reasons I have removed login details.

In attach you can see pricing setup.
User avatar
Fresh Boarder

GK User
Sat Oct 05, 2013 3:57 pm
Reply with quote
Report this post
Update....
you can see price only in category "peperosa" - "dress"

let me know.
thank
Fabio
User avatar
Fresh Boarder

GK User
Sat Oct 05, 2013 4:13 pm
Reply with quote
Report this post
attach
User avatar
Fresh Boarder

GK User
Sun Oct 06, 2013 4:18 am
Reply with quote
Report this post
Please try following change which would show the price based on final sales price.

File: templates/gk_storebox/html/com_virtuemart/category/default.php
Line: around 194

Following Code
Code: Select all
echo $this->currency->createPriceDiv('basePriceWithTax', '', $product->prices);


Replace it with below
Code: Select all
echo $this->currency->createPriceDiv('salesPrice', '', $product->prices);


Let me know how you get on.

See you around...
User avatar
Platinum Boarder

GK User
Mon Oct 07, 2013 5:03 pm
Reply with quote
Report this post
Hi Norman,
thank for your help, now all work good.

I have another question.
In "product view" I can't see the short description.
To help you I put the same text, in the short description and in product description.

Do you know why this happen?

I thank you again...
Fabio
User avatar
Fresh Boarder

GK User
Mon Oct 07, 2013 5:23 pm
Reply with quote
Report this post
I forgot, more about in product view, is it possible to see an image gallery (when you zoom any image) instead of having to close and reopen all the images?
User avatar
Fresh Boarder

GK User
Mon Oct 07, 2013 11:06 pm
Reply with quote
Report this post
Hi,

I ll check this in my server sometime tomorrow evening as I will be away during day time. I ll post back here with my results.

See you around...
User avatar
Platinum Boarder

GK User
Thu Oct 10, 2013 4:35 pm
Reply with quote
Report this post
Hi Norman, some news?

Let me know.
Thanks
User avatar
Fresh Boarder

GK User
Fri Oct 11, 2013 9:24 am
Reply with quote
Report this post
Hi, sorry for the delay, please make following changes for short description.
This will show short description in a separate tab.

File: templates/gk_storebox/html/com_virtuemart/productdetails/default.php
Line: 399 to 418 which is below
Code: Select all
   <?php if(!empty($this->product->product_desc) || $this->allowRating || $this->showReview) : ?>
   <ul id="product-tabs">z
      <?php if(!empty($this->product->product_desc)) : ?>
      <li data-toggle="product-description"><?php echo JText::_('COM_VIRTUEMART_PRODUCT_DESC_TITLE') ?></li>
      <?php endif; ?>
      
      <?php if($this->allowRating || $this->showReview) : ?>
      <li data-toggle="customer-reviews"><?php echo JText::_('COM_VIRTUEMART_REVIEWS') ?></li>
      <?php endif; ?>
   </ul>
   
   <div id="product-tabs-content">
   <?php endif; ?>
   

   <?php if (!empty($this->product->product_desc)) : ?>
   <div class="product-description gk-product-tab">
         <?php echo $this->product->product_desc; ?>
   </div>
   <?php endif; ?>

Replace with below
Code: Select all
   <?php if(!empty($this->product->product_desc) || !empty($this->product->product_desc) || $this->allowRating || $this->showReview) : ?>
   <ul id="product-tabs">
      <?php if(!empty($this->product->product_s_desc)) : ?>
      <li data-toggle="product-short-description"><?php echo JText::_('COM_VIRTUEMART_PRODUCT_DETAILS_SHORT_DESC_TITLE') ?></li>
      <?php endif; ?>
      <?php if(!empty($this->product->product_desc)) : ?>
      <li data-toggle="product-description"><?php echo JText::_('COM_VIRTUEMART_PRODUCT_DESC_TITLE') ?></li>
      <?php endif; ?>
      
      <?php if($this->allowRating || $this->showReview) : ?>
      <li data-toggle="customer-reviews"><?php echo JText::_('COM_VIRTUEMART_REVIEWS') ?></li>
      <?php endif; ?>
   </ul>
   
   <div id="product-tabs-content">
   <?php endif; ?>
   <?php if (!empty($this->product->product_s_desc)) : ?>
   <div class="product-short-description gk-product-tab">
         <?php echo $this->product->product_s_desc; ?>
   </div>
   <?php endif; ?>   

   <?php if (!empty($this->product->product_desc)) : ?>
   <div class="product-description gk-product-tab">
         <?php echo $this->product->product_desc; ?>
   </div>
   <?php endif; ?>   <?php if(!empty($this->product->product_desc) || !empty($this->product->product_desc) || $this->allowRating || $this->showReview) : ?>
   <ul id="product-tabs">
      <?php if(!empty($this->product->product_s_desc)) : ?>
      <li data-toggle="product-short-description"><?php echo JText::_('COM_VIRTUEMART_PRODUCT_DETAILS_SHORT_DESC_TITLE') ?></li>
      <?php endif; ?>
      <?php if(!empty($this->product->product_desc)) : ?>
      <li data-toggle="product-description"><?php echo JText::_('COM_VIRTUEMART_PRODUCT_DESC_TITLE') ?></li>
      <?php endif; ?>
      
      <?php if($this->allowRating || $this->showReview) : ?>
      <li data-toggle="customer-reviews"><?php echo JText::_('COM_VIRTUEMART_REVIEWS') ?></li>
      <?php endif; ?>
   </ul>
   
   <div id="product-tabs-content">
   <?php endif; ?>
   <?php if (!empty($this->product->product_s_desc)) : ?>
   <div class="product-short-description gk-product-tab">
         <?php echo $this->product->product_s_desc; ?>
   </div>
   <?php endif; ?>   

   <?php if (!empty($this->product->product_desc)) : ?>
   <div class="product-description gk-product-tab">
         <?php echo $this->product->product_desc; ?>
   </div>
   <?php endif; ?>


Edit File: language/en-GB/en-GB.com_virtuemart.ini
Line: 277 which is below.
Code: Select all
COM_VIRTUEMART_PRODUCT_DETAILS_SHORT_DESC_LBL="Short description"

Replace with below
Code: Select all
COM_VIRTUEMART_PRODUCT_DETAILS_SHORT_DESC_TITLE="Short Description"
COM_VIRTUEMART_PRODUCT_DETAILS_SHORT_DESC_LBL="Short description"


For Zoom plugin please see following topic in virtuemart forums which is a free zoom plugin.

http://forum.virtuemart.net/index.php?topic=105768.0
http://joomquery.com/en/home/our-produc ... -zoom.html

See you around...
User avatar
Platinum Boarder

GK User
Fri Oct 11, 2013 10:54 am
Reply with quote
Report this post
Hi Norman,
Ok for short description.....

For Zoom Gallery I think I badly explained...
When I have more than one photo, I need to navigate them with arrows "prev -next", like demo template.

See examples in attachment

Let me know.
Fabio

demo-zoom.jpg

exemple1.jpg

exemple2.jpg
User avatar
Fresh Boarder

GK User
Fri Oct 11, 2013 11:59 am
Reply with quote
Report this post
I see , you simply want navigation arrows when there is more then one image. I ll look into it : )
User avatar
Platinum Boarder

GK User
Mon Oct 14, 2013 9:51 am
Reply with quote
Report this post
Hi Norman, some news?
Let me know.
Fabio
User avatar
Fresh Boarder

GK User
Sun Nov 17, 2013 11:01 pm
Reply with quote
Report this post
I have the same problem. Have you found a solution?
User avatar
Fresh Boarder


cron