Simple Machines Community Forum

SMF Support => Language Specific Support => Türkçe Bölümü (Turkish) => Topic started by: serdar01 on August 14, 2015, 02:50:41 AM

Title: Profil Alanı
Post by: serdar01 on August 14, 2015, 02:50:41 AM
Merhaba.
Ekeldiğim resimdeki kırmızı ile işaretli alanı nasıl kaldırabilirim ?
Sadece yönetici ile kişisel mesajın yazdığı yer kalsın istiyorum.

(http://i.hizliresim.com/aDXNZQ.jpg) (http://hizliresim.com/aDXNZQ)
Title: Re: Profil Alanı
Post by: Antes on August 14, 2015, 05:25:24 AM
display.template.php dosyası içerisinde

// 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 '
<li class="postgroup">', $message['member']['post_group'], '</li>';
echo '
<li class="stars">', $message['member']['group_stars'], '</li>';


// Show how many posts they have made.
if (!isset($context['disabled_fields']['posts']))
echo '
<li class="postcount">', $txt['member_postcount'], ': ', $message['member']['posts'], '</li>';


bunları bulup silmeniz yeterlidir.
Title: Re: Profil Alanı
Post by: serdar01 on August 14, 2015, 05:28:44 AM
Quote from: Antes on August 14, 2015, 05:25:24 AM
display.template.php dosyası içerisinde

// 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 '
<li class="postgroup">', $message['member']['post_group'], '</li>';
echo '
<li class="stars">', $message['member']['group_stars'], '</li>';


// Show how many posts they have made.
if (!isset($context['disabled_fields']['posts']))
echo '
<li class="postcount">', $txt['member_postcount'], ': ', $message['member']['posts'], '</li>';


bunları bulup silmeniz yeterlidir.

Çok teşekkür ederim.Oldu.