VirtueMart Forum

VirtueMart 2 + 3 + 4 => Templating & Layouts => Topic started by: riasztobolt on March 12, 2015, 12:01:32 PM

Title: Category list with long description
Post by: riasztobolt on March 12, 2015, 12:01:32 PM
Hi!

I need long descriptions to show rather than short descriptions. Witch file can I modify in the category listing for the products? THX!

/Joomla 3.4.0 + VM 3.0.4 + Templatemonster template/

Title: Re: Category list with long description
Post by: liquid.ideas on October 07, 2015, 13:55:02 PM
I can tell you which file but Im busy working out how to do it myself, will post shen I have figured it out.

File: components/com_virtuemart/sublayouts/products.php

Remember to template override.
Title: Re: Category list with long description
Post by: liquid.ideas on October 07, 2015, 14:11:20 PM
Well ok got it:

In before mentioned file find:

<?php // Product Short Description
          
if (!empty($product->product_s_desc)) {
            
?>

            <p class="product_s_desc">
              <?php echo shopFunctionsF::limitStringByWord ($product->product_s_desc40'...'?>
            </p>
        <?php ?>


and change to:

<?php // Product Short Description
          
if (!empty($product->product_desc)) {
            
?>

            <p class="product_desc">
              <?php echo shopFunctionsF::limitStringByWord ($product->product_desc4000'...'?>
            </p>
        <?php ?>