Showing on member profile
ZiNgA BuRgA Offline
Fag
*******
Posts: 3,357
Joined: Jan 2008
Post: #4
RE: Showing on member profile
(12-08-2010 05:17 PM)leefish Wrote:  I'm sorry, I think I was not clear (again) I have a link in the header - my profile - which is constructed to use this code:

Code:
<span><a href="{$mybb->settings['bburl']}/member.php?action=profile">My Profile</a></span>


A lot of mybb sites seem to use this construct for a profile link. When I click on that link (My Profile) THEN it gives the link below:

Code:
http://www.leefish.nl/mybb/member.php?action=profile

But that's an invalid link as there's no uid in the URL.
It probably should be

HTML Code
<span><a href="{$mybb->settings['bburl']}/member.php?action=profile&amp;uid={$mybb->user['uid']}">My Profile</a></span>


But if you want the SEF/SEO URLs, you need to use get_profile_link somewhere, eg:

PHP Code:
$userlink = get_profile_link($mybb->user['uid']);



EDIT: okay, it looks like MyBB will fall back to the current user if no uid is supplied.
In which case, you'd retrieve the user ID through $uid.  In other words, replace $mybb->input['uid'] with $GLOBALS['uid']


My Blog
(This post was last modified: 12-08-2010 06:36 PM by ZiNgA BuRgA.)
12-08-2010 06:33 PM
Find all posts by this user Quote this message in a reply

« Next Oldest | Next Newest »

Messages In This Thread
Showing on member profile - leefish - 12-08-2010, 03:27 PM
RE: Showing on member profile - leefish - 12-08-2010, 05:17 PM
RE: Showing on member profile - ZiNgA BuRgA - 12-08-2010 06:33 PM
RE: Showing on member profile - leefish - 12-08-2010, 06:43 PM
RE: Showing on member profile - leefish - 12-08-2010, 08:35 PM

 Standard Tools
Forum Jump: