[SNIPPET] Enable HTML in site description

Modifications for phpBB3.
Try the Mods here and share Your own Mods
Forum rules
You dont have to use ModX or make your mod AutoMod compatible. A simple textfile is fine
But if you post Mods here You also have to give support

[SNIPPET] Enable HTML in site description

Post by Stoker »

Drummer wrote:open includes/functions.php
Find:

Code: Select all

		'SITE_DESCRIPTION'				=> $config['site_desc'],
Replace with:

Code: Select all

		'SITE_DESCRIPTION'				=> html_entity_decode($config['site_desc']),
It will allow you to use html tags (such as <a> :p) on your site description.
Then go to the ACP -> General -> Board configuration -> Board Settings and change the Site description to something like <a href='http://yourmainwebsite.com'>Using a link as descritption</a>.