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.0http://joomquery.com/en/home/our-produc ... -zoom.htmlSee you around...