MyBB Community Forums

Full Version: [welcomeblock_member] Username and Avatar Linkable
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I've tried to make my themes "welcomeblock_member" allow linking to users profiles via their Username and Avatar.

However, I seem to break everything with codes attempted via tutorials or codes which have been mentioned in the community. Although it seems simple, I cannot figure it out for the life of me.

Would someone be able to help?

This is my themes code.

<div id="panel" class="loggedInPanel">
				<div class="welcomeblock">
<div class="welcomeblock_avatar">
	<div class="welcomeblock_links">
		&raquo; <a href="{$mybb->settings['bburl']}/usercp.php"><strong>User CP</strong></a><br />
		&raquo; <a href="{$mybb->settings['bburl']}/private.php"><strong>Messages ({$mybb->user['unreadpms']})</strong></a><br />
		{$modcplink}
		{$admincplink}
		&raquo; <a href="{$mybb->settings['bburl']}/member.php?action=logout&logoutkey={$mybb->user['logoutkey']}"><strong>Log Out</strong></a><br />
	</div>
	<img src="{$mybb->user['avatar']}" alt="{$mybb->user['username']}'s Avatar" /><br />
</div>
<span class="welcome_name">Welcome back, {$mybb->user['username']}.</span><br />
You have <strong>(<a href="{$mybb->settings['bburl']}/private.php">{$mybb->user['unreadpms']}</a>)</strong> unread PMs.<br />
<span class="smalltext"><a href="{$mybb->settings['bburl']}/search.php?action=getnew"><strong>View New Posts </strong></a> | <a href="{$mybb->settings['bburl']}/search.php?action=getdaily"><strong>View Today's Posts</strong></a></span>

				</div>
			</div>

Thanks Smile
Can you show me with a picture or something? Because I don't finish to understand what you wanna do...

If you want to put a link to the username and the avatar and send the user to their own profile, an "<a href=""></a>" tag it's all you need...