MyBB Community Forums

Full Version: change profile link
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
hi

how can i change the profile link on all the forum to target a custom page ?
insted of going to
http://localhost/mybb/member.php?action=profile&uid=2
i want to target something like
http://www.mydomain.com/profile/username(username of the logedin user)

thanks in advance for any help
You can modify inc/functions.php::get_profile_link() in order to change the profile links everywhere to something else. Alternatively you could write a plugin that hooks into member.php and redirects to another custom page from there.
thanks i changed the function get_profile_link() and it works