Hello
For years I have used this edit of includes/functions.php to be able to display html in sitename and site_desc
Find:Replace with: However it would be nice to be able to achieve this without editing core files.
I have a custom listener for the little things.
So I added this, but with no luck:Any ideas on how I can do this?
For years I have used this edit of includes/functions.php to be able to display html in sitename and site_desc
Find:
Code:
'SITENAME'=> $config['sitename'],'SITE_DESCRIPTION'=> $config['site_desc'],
Code:
'SITENAME'=> html_entity_decode($config['sitename']),'SITE_DESCRIPTION'=> html_entity_decode($config['site_desc']),
I have a custom listener for the little things.
So I added this, but with no luck:
Code:
public function index_modify_page_title(){$this->template->assign_vars(['SITENAME'=> html_entity_decode($this->config['sitename']),'SITE_DESCRIPTION'=> html_entity_decode($this->config['site_desc']),]);}
Statistics: Posted by Stoker 4.0 — Sat Mar 01, 2025 8:01 am