Hi, we bought JM Crafts theme and wondering if the product name in category can be multi-line?
http://www.touchunlimited.com/catego…_multiline.jpg
Thanks!
1 answer
Please go to the file: "app\design\frontend\default\jm_craftstemplate\jo omlart\jmproducts\list.phtml" at line 152 and replace the code
Code:
<?php if (strlen($_product->getName()) > 30) : echo strip_tags(substr($_product->getName(), 0, 20)).'...'; else : echo $_product->getName(); endif; ?>
to
Code:
<?php echo $_product->getName(); ?>