MyBB Community Forums

Full Version: looking for two templates
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
buddy_options
and online_status

I cant seem to find them?
Probably because they don't exist.
buddy_options temlpate does not exist, but you may edit this within core file.

Open ./member.php and find; (around line # 1763 ~ 1775)
	$buddy_options = '';
	
	if($mybb->user['uid'] != $mybb->input['uid'] && $mybb->user['uid'] != 0)
	{
		$buddy_list = explode(',', $mybb->user['buddylist']);
		if(in_array($mybb->input['uid'], $buddy_list))
		{
			$buddy_options = "<br /><a href=\"./usercp.php?action=do_editlists&amp;delete={$mybb->input['uid']}&amp;my_post_key={$mybb->post_code}\"><img src=\"{$theme['imgdir']}/remove_buddy.gif\" /> {$lang->remove_from_buddy_list}</a>";
		}
		else
		{
			$buddy_options = "<br /><a href=\"./usercp.php?action=do_editlists&amp;add_username=".urlencode($memprofile['username'])."&amp;my_post_key={$mybb->post_code}\"><img src=\"{$theme['imgdir']}/add_buddy.gif\" /> {$lang->add_to_buddy_list}</a>";
		}

And for online_status; Go to: ACP > Templates > Your theme's templates > Member Templates > member_profile_online and member_profile_offline. Wink
oh sorry, I just assumed thats what it would be called.

thank you very much Yaldaram.