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/
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.
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_desc, 40, '...') ?>
</p>
<?php } ?>
and change to:
<?php // Product Short Description
if (!empty($product->product_desc)) {
?>
<p class="product_desc">
<?php echo shopFunctionsF::limitStringByWord ($product->product_desc, 4000, '...') ?>
</p>
<?php } ?>