I i select a category i see the product title below the image partly. How to change this to show the whole title?
3 answers
I managed to change this list.phtml . in /app/design/frontend/default/jm_crafts/template/product/list.phtml. See below.
<h2 class=”product-name”>
<a href=”<?php echo $_product->getProductUrl() ?>” title=”<?php echo $this->stripTags($_product->getName(), null, true) ?>”>
<?php $pname = $_helper->productAttribute($_product, $_product->getName(), ‘name’) ?>
<?php
if (strlen($pname) > 75) :
echo strip_tags(substr($pname, 0, 65)).’…’;
else :
echo $pname;
endif;
?>
</a>
</h2>
Hi Hamed,
Yes, is that custom code help you to solve the issue?
Let’s contact me if you need further assistance!
Regards,
Mall.