Konu Sahibi ->Yağız teşekkür ederiz.

../Themes/temanız/index.template.php dosyasında bulun:
</head>
Öncesine ekleyin:
<script language="javascript" type="text/javascript" src="', $settings['theme_url'], '/dropdown.js"></script>
../Themes/temanız(eğer yoksa default)/Display.template.php dosyasında bulun:
<b>', $message['member']['link'], '</b>
Değiştirin:
';
//Show information about the poster of this message.
//Show the author name and dropdown menu for the profile, website, email address, and personal message buttons.
if ($settings['show_profile_buttons'])
{
// Don't show the profile button if you're not allowed to view the profile.
if ($message['member']['can_view_profile'] && $context['user']['is_logged'])
{
echo '
<b><a href="', $scripturl, '?action=profile;u=', $message['member']['id'], '" id="ID', $message['id'], '" rel="drop', $message['id'], '" class="postername">', $message['member']['name'], '</a></b>
<!-- Start Dropdown -->
<div id="drop', $message['id'], '" style="width: 250px; visibility:hidden;" class="drop-down">
<table width="100%" border="0" cellpadding="0" cellspacing="1">';
// Don't show the profile button if you're not allowed to view the profile.
echo '
<tr>
<td class="catbg" height="20" align="left" valign="middle">'. $message['member']['name']. '</td>
</tr>';
if ($message['member']['can_view_profile'] && $context['user']['is_logged'])
{
echo '
<tr>
<td height="20" align="left" valign="middle"><a class="subNav-link" href="', $scripturl, '?action=profile;u=', $message['member']['id'], '">', $txt['public_profile'], '</a></td>
</tr>';
}
// Don't show these things for guests.
if (!$message['member']['is_guest'])
{
//Don't show a link if they haven't specified a website.
if ($message['member']['website']['url'] != '')
echo '
<tr>
<td height="20" align="left" valign="middle"><a class="subNav-link" href="', $message['member']['website']['url'], '" title="' . $message['member']['website']['title'] . '" target="_blank">', $txt['members_website'], '</a></td>
</tr>';
//Don't show the email address if they want it hidden.
if (empty($message['member']['hide_email']))
echo '
<tr>
<td height="20" align="left" valign="middle"><a class="subNav-link" href="mailto:', $message['member']['email'], '">', $txt['an_email'], '</a></td>
</tr>';
// Since we know this person isn't a guest, you *can* message them.
if ($context['can_send_pm'])
echo '
<tr>
<td height="20" align="left" valign="middle"><a class="subNav-link" href="', $scripturl, '?action=pm;sa=send;u=', $message['member']['id'], '">', $txt['private_message'], '</a></td>
</tr>';
//Show the last posts
echo '
<tr>
<td height="20" align="left" valign="middle"><a class="subNav-link" href="', $scripturl, '?action=profile;u=', $message['member']['id'], ';sa=showPosts">', $txt['last_post'], '</a></td>
</tr>';
//Show more stats for this user
echo '
<tr>
<td height="20" align="left" valign="middle"><a class="subNav-link" href="', $scripturl, '?action=profile;u=', $message['member']['id'], ';sa=statPanel">', $txt['show_genstats'], '</a></td>
</tr>';
}
echo '
</table>
</div>
<script type="text/javascript">
dropdowncontent.init("ID', $message['id'], '", "right-bottom", 200, "click")
</script>
<!-- End Dropdown -->';
}
else
{
echo '
<b>', $message['member']['name'], '</b><br />';
}
}
echo '
<br />';
echo '
../Themes/temanız/style.css dosyasının en sonuna ekleyin:
/****
This is the username of the poster.
****/
a.postername:link, a.postername:visited, a.postername:active
{
display: block;
padding: 3px 5px 3px 5px;
background: #e7e7e7;
border: 1px solid #acacac;
text-align: left;
color: #000000;
text-decoration: none;
}
a.postername:hover
{
background: #efefef;
border: 1px solid #acacac;
color: #000000;
text-decoration: none;
}
/****
The styles for the dropdown menus.
****/
.drop-down
{
position:absolute;
border: 2px solid #494949;
background-color:#f9f9f9;
padding: 2px;
}
../Themes/default/languages/Modifications.turkish.php(eğer temanızda yoksa) dosyasında bulun:
?>
Öncesine ekleyin:
$txt['public_profile'] = 'Profil Bilgileri';
$txt['members_website'] = 'Websitesi';
$txt['an_email'] = 'Email Gönder';
$txt['private_message'] = 'Özel Mesaj Gönder';
$txt['last_post'] = 'Son Mesajlarini Göster';
$txt['show_genstats'] = 'Genel Istatistiklerini Göster.';
Ekteki dosyayi tema dosyaniza atın.
Eğer Member Color Link modifikasyonunu kullanıyorsanız, değişiklikleri yaptıktan sonra Display.template.php dosyasında bulun:
$message['member']['name']
Değiştirin:
$message['member']['colored_name']
[/hr]