MyBB Community Forums

Full Version: Changing the HTML of Profilelink - {$thread['profilelink']}
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi all,
I've been looking through all the template files, but I can not find where to edit the HTML of the profile link. It's referenced as {$thread['profilelink']} in Forum Display Templates > forumdisplay_thread
I'd like to add rel="nofollow" to it. Where do I edit this?

Thanks in advance!
Found it!

This is to change -all- the profile links on your entire forum (so on the post pages, forum pages, thread listings, index, etc etc)

inc/functions.php: line 4546
return "<a href=\"{$mybb->settings['bburl']}/".get_profile_link($uid)."\"{$target}{$onclick} rel=\"nofollow\">{$username}</a>";

Hope this helps Smile