Description of product in Vurtuemart is not shown

Support desk for Multipurpose Quark Theme
GK User
Fri Aug 21, 2015 5:43 pm
User avatar
Platinum Boarder

teitbite
Sun Aug 23, 2015 8:15 pm
Hi

This is interesting. Please check if Your descriptions are not set to short description field. This field is for category layout only.

As a second test please rename /html/com_virtuemart/productdetails to /html/com_virtuemart/_productdetails and see if this descriptions are visible than.
User avatar
Moderator

GK User
Sun Aug 23, 2015 8:57 pm
teitbite wrote:As a second test please rename /html/com_virtuemart/productdetails to /html/com_virtuemart/_productdetails and see if this descriptions are visible than.

I went immidiately to the second one, and now I do have description! http://v-boge.org/bizneskurs/%D0%BC%D0%B0%D1%81%D1%82%D0%B5%D1%80-%D0%B3%D1%80%D1%83%D0%BF%D0%BF%D0%B0-%D0%B1%D0%B8%D0%B1%D0%BB%D0%B5%D0%B9%D1%81%D0%BA%D0%B8%D0%B5-%D1%81%D0%B5%D0%BA%D1%80%D0%B5%D1%82%D1%8B-%D0%B1%D0%B8%D0%B7%D0%BD%D0%B5%D1%81%D0%B0-1-detail, though I guess it's not fully complying to the template's idea... )))
User avatar
Platinum Boarder

teitbite
Wed Aug 26, 2015 4:52 pm
Hi

Ok, this surprised me a little bit, but looks like this template is build the oposit way than any other before ;/ In older templates short description was hidden in product pages, but full description was visible. Here it's the other way around. So I edited file /html/com_virtuemart/productdetails/default.php and replaced code:

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


with

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


cron