Display.template.php
(buradan)
// Show information about the poster of this message.
(buraya kadar sil bu hariç)
// Done with the information about the poster...
(bul)
// Done with the information about the poster...
(üstüne ekle)
// Profil tablo by burak.
echo '
<TABLE style="TABLE-LAYOUT: fixed" cellSpacing=0 cellPadding=5 width="100%">
<TBODY>
<TR>
<TD class=windowbg9 style="OVERFLOW: hidden" vAlign=top align=middle width="17%" rowSpan=2>
<TABLE cellSpacing=0 cellPadding=0 width="100%" border=0>
<TBODY>
<TR>
<TD width=0%><IMG alt="" src="' . $settings['images_url'] . '/re_b_top1.gif"></TD>
<TD style="BACKGROUND-IMAGE: url(' . $settings['images_url'] . '/re_b_top2.gif)" width="100%"><IMG alt="" src="' . $settings['images_url'] . '/userinfo.gif" align=right></TD>
<TD width=0%><IMG alt="" src="' . $settings['images_url'] . '/re_b_top3.gif"></TD></TR>
<TR>
<TD style="BACKGROUND-IMAGE: url(' . $settings['images_url'] . '/re_b_mid1.gif)" width=0%></TD>
<TD style="BACKGROUND-COLOR: white" width="100%">';
// Show information about the poster of this message.
echo'
<b>', $message['member']['link'], '</b>';
echo' <div class="smalltext">';
// Show the member's custom title, if they have one.
if (isset($message['member']['title']) && $message['member']['title'] != '')
echo '
', $message['member']['title'], '<br />';
// Show the member's primary group (like 'Administrator') if they have one.
if (isset($message['member']['group']) && $message['member']['group'] != '')
echo '
', $message['member']['group'], '<br />';
// Don't show these things for guests.
if (!$message['member']['is_guest'])
{
// Show the post group if and only if they have no other group or the option is on, and they are in a post group.
if ((empty($settings['hide_post_group']) || $message['member']['group'] == '') && $message['member']['post_group'] != '')
echo '
', $message['member']['post_group'], '<br />';
echo '
', $message['member']['group_stars'], '<br /><br />';
// Show the member's gender icon?
if (!empty($settings['show_gender']) && $message['member']['gender']['image'] != '')
echo '
', $txt[231], ': ', $message['member']['gender']['image'], '<br />';
// Show how many posts they have made.
echo '
', $txt[26], ': ', $message['member']['posts'], '<br />
<br />';
// Show their personal text?
if (!empty($settings['show_blurb']) && $message['member']['blurb'] != '')
echo '
', $message['member']['blurb'], '<br />
<br />';
// This shows the popular messaging icons.
echo '
', $message['member']['icq']['link'], '
', $message['member']['msn']['link'], '
', $message['member']['aim']['link'], '
', $message['member']['yim']['link'], '<br />';
// Show 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'])
echo '
<a href="', $message['member']['href'], '">', ($settings['use_image_buttons'] ? '<img src="' . $settings['images_url'] . '/icons/profile_sm.gif" alt="' . $txt[27] . '" title="' . $txt[27] . '" border="0" />' : $txt[27]), '</a>';
// Don't show an icon if they haven't specified a website.
if ($message['member']['website']['url'] != '')
echo '
<a href="', $message['member']['website']['url'], '" title="' . $message['member']['website']['title'] . '" target="_blank">', ($settings['use_image_buttons'] ? '<img src="' . $settings['images_url'] . '/www_sm.gif" alt="' . $txt[515] . '" border="0" />' : $txt[515]), '</a>';
// Don't show the email address if they want it hidden.
if (empty($message['member']['hide_email']))
echo '
<a href="mailto:', $message['member']['email'], '">', ($settings['use_image_buttons'] ? '<img src="' . $settings['images_url'] . '/email_sm.gif" alt="' . $txt[69] . '" title="' . $txt[69] . '" border="0" />' : $txt[69]), '</a>';
Kendi temandaki Display.template.php veya kendi temanda yok ise Display.template.php default temanın içindeki Display.template.php değişiklik yapacksın...