Answer the question
In order to leave comments, you need to log in
Limit number of characters in Opencart 3 product name?
https://github.com/opencart/opencart/blob/master/u...
199 line
did this:'name' => $result['name'],
'name' => utf8_substr(strip_tags(html_entity_decode($result['name'], ENT_QUOTES, 'UTF-8')), 0, 25) . '..',
<?php if( strlen( $product['name'] ) < 30 ) { echo $product['name']; } else { echo mb_substr( $product['name'],0,20,'utf-8' )."..."; } ?>
Answer the question
In order to leave comments, you need to log in
Interested in the reverse action, how to make the name of the product completely?
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question