BUG Virtuemart product quick description is not displayed

GK User
Fri Sep 05, 2014 2:37 pm
Hi,
I have so many problems with that template !
using Virtuemart 2.6.6 on joomla 2.5.24, quick description is not displayed on frontend for any products
When I use another template, it is displayed
Can you make a test to see what's going on ?
thanks
User avatar
Gold Boarder

GK User
Mon Sep 08, 2014 11:23 am
User avatar
Gold Boarder

GK User
Tue Sep 09, 2014 3:09 pm
Up Up, please !
I need to set the website online quickly.
Can you see where's the problem ?
Thanks
User avatar
Gold Boarder

GK User
Thu Sep 11, 2014 11:27 am
SOLVED by myself !
Very disappointed with the support for that case which is due to a simple lack in Storefront template Virtuemart HTML folder
what is needed is to add after line 250 in templates/gk_storefront/html/com_virtuemart/productdetails/default.php
just before // Product Price :
Code: Select all
// Product Short Description
    if (!empty($this->product->product_s_desc)) {
   ?>
        <div class="product-short-description">
       <?php
       /** @todo Test if content plugins modify the product description */
       echo nl2br($this->product->product_s_desc);
       ?>
        </div>
   <?php
    } // Product Short Description END


and the product short description is displayed !
User avatar
Gold Boarder

GK User
Thu Sep 11, 2014 10:50 pm
thank you
User avatar
Fresh Boarder


cron