MyBB Community Forums

Full Version: How to show the homepage in User Contact Details as simple text?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
If I enter in my homepage :
www.example.com

then it's actually shown as http://www.example.com - in short mybb adds <a href= tag around the url. Or parse url's/automatic urls is on for this url in phpbb terminology.

Also it is good attraction for spammers. So I want it to be shown as simple text url:
www.example.com
.

How can I do it?

Sorry guys I had to use [CODE] to prevent mybb from turning into clickable link. There does not seem to be option "don't parse urls" as in phpbb.
In the template 'member_profile', replace:
{$website}
with
{$memprofile['website']}

That is the website url without the anchor tag.