0

News Box Layout

Pierre Chabaud 12 years ago updated 12 years ago 2

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

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');