Yeni Üye Yazısını Kaldırma

Başlatan BringThaNoize, 11 Eyl 2016, 22:57

« önceki - sonraki »

0 Üyeler ve 1 Ziyaretçi konuyu incelemekte.

BringThaNoize

Sitede üyeler için seviye sistemi yaptık. Ama profilden yeni üye yazısını nasıl kaldırabiliriz. Bunun yerine 1. Seviye yazmasını istiyorum.

tarantula901

Yeni seviye sistemi yaptiysaniz display template dosyasindan o kismi tamamen kaldirip sizin kodlari ekleyebilirsiniz
Sitenizde işlem yapmadan önce mutlaka yedek alın, yedek alın yedek almayı unutmayın her şeyden önce bu önemli

Pm'den ve Skype'den istenilen destekler ücretlidir. Ücret ödememek için lütfen sitede sorunuzu konu açarak sorabilirsiniz.

Ücretli Smf Destek İçin

BringThaNoize


Bigchefstarys

Eğer kullandığınız temanın klasöründe display.template.php var ise buradan gönderin. Yok ise bildirin ben size derleyip gönderebilirim.

tarantula901

Tam olarak istenilen kısmı kaldırmak amacıyla size uygun hangisi anlamak açısından 3 tane ayrı kod veriyorum bunları tek tek kaldırıp kontrol edin. ister aynı anda kaldırarak istediğiniz kısmı bulmuş olursunuz.

Bu kodları temanız içinde bulunan "Display.template.php" dosyasında arayacaksınız temanızda yok ise "default" temasına bakın.

1: kod

// Show the member's custom title, if they have one.
if (!empty($message['member']['title']))
echo '
<li class="title">', $message['member']['title'], '</li>';

2: Kod

// Show the member's primary group (like 'Administrator') if they have one.
if (!empty($message['member']['group']))
echo '
<li class="membergroup">', $message['member']['group'], '</li>';

3: Kod

Bu kod ileti sayısına göre oluşturulan grup kodu

// 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 '
<li class="postgroup">', $message['member']['post_group'], '</li>';
echo '
<li class="stars">', $message['member']['group_stars'], '</li>';
Sitenizde işlem yapmadan önce mutlaka yedek alın, yedek alın yedek almayı unutmayın her şeyden önce bu önemli

Pm'den ve Skype'den istenilen destekler ücretlidir. Ücret ödememek için lütfen sitede sorunuzu konu açarak sorabilirsiniz.

Ücretli Smf Destek İçin

Yaman

@tarantula901 3. kodu silince hata veriyor
// 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 '
<li class="postgroup">', $message['member']['post_group'], '</li>';
echo '
<li class="stars">', $message['member']['group_stars'], '</li>';

tarantula901

sadece sunu kullanın

// 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>';
Sitenizde işlem yapmadan önce mutlaka yedek alın, yedek alın yedek almayı unutmayın her şeyden önce bu önemli

Pm'den ve Skype'den istenilen destekler ücretlidir. Ücret ödememek için lütfen sitede sorunuzu konu açarak sorabilirsiniz.

Ücretli Smf Destek İçin

Yaman

#7
Teşekkürler :)

BringThaNoize

Alıntı yapılan: tarantula901 - 28 Ksm 2016, 15:31sadece sunu kullanın

// 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>';

Bunları silince kendi yaptığım seviye sistemi siliniyor. Ben aşağıda işaretlediğim yeri silmek istiyorum.


tarantula901

o yazı yazan yer tam olarak nerede yazılmıs normal guruplardamı yoksa ıletı gurubundamı

hem yazı hem rank olayını kullanmak yerıne sadece bırını kullanın

<img src="resimlinkl"> bu kodu yazı yerıne koyun
Sitenizde işlem yapmadan önce mutlaka yedek alın, yedek alın yedek almayı unutmayın her şeyden önce bu önemli

Pm'den ve Skype'den istenilen destekler ücretlidir. Ücret ödememek için lütfen sitede sorunuzu konu açarak sorabilirsiniz.

Ücretli Smf Destek İçin