News:

Support the VirtueMart project and become a member

Main Menu

Category list with long description

Started by riasztobolt, March 12, 2015, 12:01:32 PM

Previous topic - Next topic

riasztobolt

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/


liquid.ideas

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.

liquid.ideas

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 ?>