Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

Magento 2 -Limit the length of the product name on the front end.

<?php
$productName = $_helper->productAttribute($_product, $_product->getName(), 'name');
$len = strlen($productName);
?>
<a class="product-item-link" href="<?php echo /* @escapeNotVerified */ $_product->getProductUrl() ?>">
    <?php echo substr($productName,0,50); ?>
    <?php if($len > 50) echo '...'; ?>
</a>
Source by magento.stackexchange.com #
 
PREVIOUS NEXT
Tagged: #Magento #length #product #front
ADD COMMENT
Topic
Name
6+7 =