while listing products. I thing it is prettier that the default of showing the first whatever 100 characters.
open
Code: Select all
catalog/controller/product/category.php
Code: Select all
'description' => utf8_substr(strip_tags(html_entity_decode($result['description'], ENT_QUOTES, 'UTF-8')), 0, 100) . '..',
Code: Select all
'description' => utf8_substr(strip_tags(html_entity_decode(strstr($result['description'], '.', true), ENT_QUOTES, 'UTF-8')), 0, 200) . '.',
Happy coding!
