Quark - No Product Description VirtueMart

Support help forum dedicated to free and commerical templates for Joomla 3 and 2.5 version.
GK User
Mon Sep 28, 2015 5:10 pm
I did a search and saw similar questions with no resolution. In the Quark eCommerce template when on product details page no description is appearing.

I renamed the folder to _productdetails and the description appeared.

Solution?

J.
User avatar
Junior Boarder

teitbite
Wed Sep 30, 2015 10:09 am
Hi

I'm sure I presented a fix for that on forum before, but can't find it either, so here once again.

Please edit file: /html/com_virtuemart/productdetails/default.php and around line 99 You will find a code:

Code: Select all
               // Product Description
               if (!empty($this->product->product_s_desc)) :
            ?>
                    <p>
                         <?php echo nl2br($this->product->product_s_desc); ?>
                    </p>


replace it with:

Code: Select all
               // Product Description
               if (!empty($this->product->product_desc)) :
            ?>
                    <p>
                         <?php echo $this->product->product_desc; ?>
                    </p>
User avatar
Moderator


cron