
0
News Box Layout
Hi !
I was wondering if the news box which can be displayed on the home page can be edited to show formated text instead of plain text ?
Thanks
Customer support service by UserEcho
Hi !
I was wondering if the news box which can be displayed on the home page can be edited to show formated text instead of plain text ?
Thanks
Customer support service by UserEcho
Yep, edit catalog\controller\module\news.php
starting with
$descr_plaintext = strip_tags(html_entity_decode($result['description'], ENT_QUOTES, 'UTF-8'));
line.
Many many Thanks !
Solved by replacing this :
$descr_plaintext = strip_tags(html_entity_decode($result['description'], ENT_QUOTES, 'UTF-8'));
With This :
$descr_plaintext = html_entity_decode($result['description'], ENT_QUOTES, 'UTF-8');