#7568

doanthuy
Moderator

hi,
To show full name of the product in the category page produc, you need make these steps:
1, Go to: sns_simo\app\design\frontend\sns_simo\default\template\catalog\product\list.phtml
2, replace 2 code:
<?php
echo Mage::helper(‘core/string’)->truncate($_helper->productAttribute($_product, $_product->getName(), ‘name’), 22);
?>

by code:

<?php
echo $_product->getName();
?>

Thank.