MyBB Community Forums

Full Version: Add Links on the side of "Open Buddy List" ?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
How to Add Links on the side of "Open Buddy List" ?

I want to add some links beside it? Where part of the template it is located?
Navigate to your theme templates > miscellaneous templates >misc_buddypopup

this template is the buddy popup base template, you can edit to your likes.
hope this helps ,
regards,
I don't understand where should I put the link there?

<html>
<head>
<title>{$lang->buddy_list}</title>
<meta http-equiv="refresh" content="60; URL=misc.php?action=buddypopup" />
{$headerinclude}
<style type="text/css">
body {
	text-align: left;
}

.buddy_avatar {
	height: 50px;
	width: 50px;
	background: #fff;
	border: 1px solid #ccc;
	float: left;
	clear: left;
	margin-right: 5px;
	text-align: center;
}

.buddy_details img {
	vertical-align: middle;
}

.buddy_action {
	margin-left: 80px;
}
</style>
</head>
<body style="margin:0; padding: 4px; top: 0; left: 0;">
	<table width="100%" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" border="0" align="center" class="tborder">
	<tr>
		<td class="thead">
			<div class="float_right" style="margin-top: 3px;"><span class="smalltext"><a href="#" onclick="window.close();">{$lang->close}</a></span></div>
			<div><strong>{$lang->buddy_list}</strong></div>
		</td>
	</tr>
	<tr>
		<td class="trow2">
			<div style="overflow: auto; height: 300px;">
				<table width="100%" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" border="0" align="center" class="tborder" style="border: 0;">
					{$buddys['online']}
					{$buddys['offline']}
				</table>
			</div>
		</td>
	</tr>
	</table>
</body>
</html>

I'm a newbie , can someone help?

Sorry for bumping, but I really need help.
Please, someone help me.
Open this template:
header_welcomeblock_member

and find:
<a href="#" onclick="MyBB.popupWindow('{$mybb->settings['bburl']}/misc.php?action=buddypopup', 'buddyList', 350, 350);">{$lang->welcome_open_buddy_list}</a>

Add just after that with following syntax:

<a href="YOUR_LINK_HERE">TEXT_TO_SHOW</a>
Thank you so much!