Friday, July 3, 2009

Magento - Limit Displayed Characters From Product Short Description

Magento Tutorials: Limit displayed characters from Magento Product Short Description

<?php $sdesc = $_product->getShortDescription();
$sdesc = trim($sdesc);
$limit = 40;
if (strlen($sdesc) > $limit) {
$sdesc = substr($sdesc, 0, strrpos(substr($sdesc, 0, $limit), ' '));
}
?>
<?php echo $sdesc."..."; ?>

This script helps you limit characters form Product Short Description.

Tags : Product Short Description, Catalog , view.phtml