Menü

İletileri Göster

Bu özellik size üyenin attığı tüm iletileri gösterme olanağı sağlayacaktır. Not sadece size izin verilen bölümlerdeki iletilerini görebilirsiniz.

İletileri Göster Menü

Konular - tekyürek

#41
Dropdown_Button_Window_Child_Boards_Mode

*Producer: Replikacep*
*helper - authors :@PALAUDIS @tarantula901*
*Version: 2.1 Date 23.01.2019
*Compatibility: SMF 2.1 RC 1*
*Add new look for SMF 2.1 RC1*

The mod implements the following changes

Subsections: adds buttons to open and close
Font Awesome was used for free. And JavaScript was also used when making the mode.
sub-sections when you click the button, the sections are opened sequentially. and the message number and the subject number have been added.
the sub-section opens and closes and adds new message icons
Sub-sections are opened and The Shape of the claws are closed. and the subject makes the display of the number of posts elegant.
Yes the new sub-section and message sequence numbers are designed for SMF 2.1
Labor spent 2 days

Made with the infrastructure used here: https://www.w3schools.com/howto/tryit.asp?filename=tryhow_css_js_dropdown




Smf  2.1 için  geliştirdigim  bir moddur

made by www.replikacep.com

modun yapımında yardım eden yazarlar :@PALAUDIS @tarantula901

Version: 2.1 Date 2019

Compatibility: SMF 2.1 RC2

*Add new look for smf 2.1 RC 2

2.1  için  yaptım modu

mod tarafımdan yapılmıştır  :)

This work is licensed under the Creative Commons Attribution-NonCommercial-NoDerivatives 4.0 International License. To view a copy of this license, visit http://creativecommons.org/licenses/by-nc-nd/4.0/.
Creative Commons License
Replikacep by Pop-up window mode for sub-sections is licensed under a Creative Commons Attribution-NonCommercial-NoDerivatives 4.0 International License.
Based on a work at  Replikacep
Permissions beyond the scope of this license may be available at  simplemachines.org

MOD : default Temaya  göre tasarlanmıştır  renkler ve  iconları dileyen istedigi temaya göre degiştirebilir  çok az php  bilmeniz yeterli  renkleri ve  butonu saga yada sola  kaydırmak için

Modu indir  : Dowloand


örnek :  index.css de modu yükledikten sonra bul 

.dropbtn {
    background-color: #557ea0;
    color: white;
    padding: auto;
    font-size: 14px;
    border: none;
    cursor: pointer;
    border: 1.5px solid #d1994c;
    margin-left: auto;
    margin-right: auto;
    margin-top: auto;
}

aşadakilerle  oynayın

margin-left: auto;
    margin-right: auto;
    margin-top: auto;
 


örnek :margin-left: auto;  yerine  margin-left: 60px; yaparsak  buton  saga  dogru kayar

yukarı  kaydırmak için : margin-top: auto; yerine  margin-top: -10px; yapın




Görseller


7

7




mobilde  gizlemek istiyorsanız  icon ları


responsive.css de  bul

@media (max-width: 480px) {
altına ekle

.fa-comments-o:before{display: none; }
.dropdown-content a {
 
  color: #557ea0;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  font-family: "Tahoma", sans-serif;
  font-weight: bold;
  line-height: 1.5em;
  margin-left: 2px;
  margin-right: auto;
  margin-top: auto;

}

bu yukarıa verdigim bir örnek tir


buton  büyük diyorsanız

index.css de  bul

.dropbtn {
    background-color: #557ea0;
    color: white;
    padding: auto;
    font-size: 16px;
    border: none;
    cursor: pointer;
    border: 1.5px solid #d1994c;
    margin-left: auto;
    margin-right: auto;
    margin-top: auto;
}



font-size: 16px;  bunu  13 yapın buton küçülür



güncelleme :

            id, name, description, new (is it new?), topics (#), posts (#), href, link, and last_post. */
        foreach ($board['children'] as $child)
        {
            if (!$child['is_redirect'])
                $child['link'] = '<a href="' . $child['href'] . '" ' . ($child['new'] ? ' class="board_new_posts" ' : '') . 'title="' . ($child['new'] ? $txt['new_posts'] : $txt['old_posts']). ' (' . $txt['board_topics'] . ': ' . comma_format($child['topics']) . ', ' . $txt['posts'] . ': ' . comma_format($child['posts']) . ')">' . $child['name'] . ($child['new'] ? '<span class="new_posts">' . $txt['new'] . '</i></a><a href="' . $scripturl . '?action=unread;board=' . $child['id'] . '" title="' . $txt['new_posts'] . ' (' . $txt['board_topics'] . ': ' . comma_format($child['topics']) . ', ' . $txt['posts'] . ': ' . comma_format($child['posts']) . ')">' : '') . '</a>';           
            else
                $child['link'] = '<a href="' . $child['href'] . '" title="' . comma_format($child['posts']) . ' ' . $txt['redirects'] . ' - ' . $child['short_description'] . '">' . $child['name'] . '</a>';

            // Has it posts awaiting approval?
            if ($child['can_approve_posts'] && ($child['unapproved_posts'] || $child['unapproved_topics']))
                $child['link'] .= ' <a href="' . $scripturl . '?action=moderate;area=postmod;sa=' . ($child['unapproved_topics'] > 0 ? 'topics' : 'posts') . ';brd=' . $child['id'] . ';' . $context['session_var'] . '=' . $context['session_id'] . '" title="' . sprintf($txt['unapproved_posts'], $child['unapproved_topics'], $child['unapproved_posts']) . '" class="moderation_link amt">!</a>';

            $children[] = $child['new'] ? '<span class="strong"><i class="fal fa-comment-alt-smile" style="color:#34373b;margin-right: auto;line-height: 1.4em;padding: 5px 0px;text-shadow: 1px 1px .5px rgba(109,66,5,.5);"> ' . $child['link'] . '</span>' : '<span><i class="fal fa-comment-alt-smile" style="color:#34373b;margin-left: 2px;margin-right: auto;margin-top: 5px;"></i> ' . $child['link'] . '</span>'; 
         
          }
         
          echo'<script> function myFunction_', $board['id'], '() {    document.getElementById("myDropdown_', $board['id'], '").classList.toggle("show"); }     
                  window.onclick = function(event) {  if (!event.target.matches(\'.dropbtn\')) { var dropdowns = document.getElementsByClassName("dropdown-content");
              var i; for (i = 0; i < dropdowns.length; i++) { var openDropdown = dropdowns[i];
              if (openDropdown.classList.contains(\'show\')) { openDropdown.classList.remove(\'show\'); } } } } </script>
                  <a id="board_', $board['id'], '_children" class="dropdown" title="', $txt['sub_boards'], '"></a>
                    <div class="kanka"><button onclick="myFunction_', $board['id'], '()" class="dropbtn">', $txt['sub_boards'], ' <span class="replikacep-caret"></span></button>
                    <p id="myDropdown_', $board['id'], '" class="dropdown-content"> ', implode($children), ' 
                      </p></div>';                                               
    }
}
#42
Mod: Ad Management Mod
Yazan: SMFHacks.com Team
Çeviren: Elmacik
Açıklama: Forumda çeşitli yerlere reklam koymanızı sağlar.
URL: http://mods.simplemachines.org/index.php?mod=255
Uyumluluk: 1.1, 1.1.10, 1.1.11, 1.1.12, 1.1.13, 1.1.14, 1.1.15, 1.1.16, 1.1.17, 1.1.18, 1.1.19, 1.1.20, 1.1.21, 2.0, 2.0.5, 2.0.6, 2.0.7, 2.0.8, 2.0.9, 2.0.10, 2.0.11,2.0.13, 2.0.14, 2.0.15, 2.1 Beta 3
Türkçesi: ekTedir.[/t]
Kullanım: dosyayı şu şekilde kaydedin:themes/default/languages/Ads.turkish.phpReklamları görmesini istediğiniz üye gruplarını izinlerden ayarlayabilirsiniz.
#43
Eh Portal v1.23 ~ Kararlı sürüm



SMF 2.1.X portal modifikasyonu (SImple Portal 2.3.6'dan alınmıştır)


Eh Portal v1.23  versionu  smf 2.1 rc sürümü çıktıgında adı simpleportal olarak degiştirilecektir    simpleportal   yerine beta aşamasındayken çıkartılmış bir portal modudur


neler güncellenmiş kısaca sıralayım


! IE11 için varsayılan öntanımlı işlev parametreleri
! Arcade bloğu için sabit eksik simge
! IE11 için sabit shoutbox javascript
! Kullanıcı giriş yaptığında sabit yönlendirme.
! Sabit redirectexit () forum URL'si
İçin &! Sabit giriş şablonu

Ana değişiklikler önemli hata düzeltmeleri ve küçük davranış değişiklikleridir.
Lütfen bu destek panosundaki geri bildirimleri ve / veya hataları bildirin.

Paket indirme bölümünde mevcuttur.



https://github.com/Underdog-01/EhPortal



ek blog modlarını buradan indirebilirsiniz


https://web-develop.ca/index.php?action=downloads;area=stable_simple_portal_plugins
#44
Konu / smf 2.1 linkback
04 Ksm 2018, 00:58
Souces/Display.php de
bul

$message['body'] = parse_bbc($message['body'], $message['smileys_enabled'], $message['id_msg']);
değiştir

$message['body'] = parse_bbc($message['body'], $message['smileys_enabled'], $message['id_msg']);
 if ($message['id_msg'] == $context['first_message'])
 {
 $message['body'] .= '<br/>Linkback: <a href="http://'.$_SERVER['HTTP_HOST'].''.$_SERVER['REQUEST_URI'].'">'.$message['subject'].'</a>';
 }

konuların ilk mesajının altına konu linkini ekler  

sitenizde ssl sertifikası var ise  http://  bu kısmı  https://  yapın
#45



S.A Herkese merhabalar  forum sitesi  kurulur  teslim edlir  ücretsiz  ve yanında ücretsiz ssl  sertifikası hediye

yanında  10 adet ücretsiz mod  kurar teslim ederiz


kuracagımız modlar

Tapatalk SMF
SimpleColorizer
nCode Image Resizer
simpleportal
Full Top 10
Downloads System
sohbet  sistemi
sitemap  seo


kalan modlarıda siz secin 

2 Adet  tema yüklemeside bizden Secerken mobil uyumlu tema secmeyi unutmayın birtanesini


hosting hesabını benden almanız şartı ile

yada  başka firmada iseniz sitenizi ücretsiz taşırız  ve  ssl yine ücretsiz kurarız
  :)


yıllık  midi paket  : 80 tl  1gb  disk

Yıllık modern paket  : 100 TL  3 gb  dik

Yıllık gold paket  : 150 TL  5 gb disk

Yıllık Sınırsız  paket  : 200 TL  sınır yok




ÜCRETSİZ SSL SERTİFİKASI  GÜVENLİ BAGLANTI

İLETİŞİM  :  İçin pm  atmanız yada  konuya cvp yazarak  belirtmeniz yeterli


#46
social sharing mode

Adds social buttons to the topic compatible with 2.0 and 2.1 and adds Sidebar


smf 2.1 ,2.0.x Font Awesome Icons

Enable socializing page

smf 2.1

Enable socialization page
Show stuff like first on Facebook
Share things on Twitter at first post
Show Google +1 shared stuff on first post
Show whatsapp can be shared on the first post
Show rss falls on the first post
Show things to share on pinterest on first post
Show things that can be shareded on the first post
Show on tumblr what's on first post on topic
Reddit share resolution' on first post
Show what you want to share in Digg on first post

Activate the Silder sidebar
activate facebook silder
Enter facebook address in the box next to
activate twitter silder
Enter twitter address in the box next to
Enable RSS silder
Enter the RSS address in the box next to
Activate Googleplus silder
Enter Googleplus address in the box next to
Activate Pinterest silder
Enter Pinterest address in the box next to
Activate Whatsapp silder
Do not forget to enter country code (+9) in the box next to Enter your phone number SAMPLE for example +95544442222



smf 2.0.15

Enable socialization page
Show stuff like first on Facebook
Share things on Twitter at first post
Show Google +1 shared stuff on first post
Show whatsapp can be shared on the first post
Show rss falls on the first post
Show things to share on pinterest on first post
Show things that can be shareded on the first post
Show on tumblr what's on first post on topic
Reddit share resolution' on first post
Show what you want to share in Digg on first post

Activate the Silder sidebar
activate facebook silder
Enter facebook address in the box next to
activate twitter silder
Enter twitter address in the box next to
Enable RSS silder
Enter the RSS address in the box next to
Activate Googleplus silder
Enter Googleplus address in the box next to
Activate Pinterest silder
Enter Pinterest address in the box next to
Activate Whatsapp silder
Do not forget to enter country code (+9) in the box next to Enter your phone number SAMPLE for example +95544442222

Turkish

SMF 2.1 ,2.0 için  Sosyal Aglarda Paylaş butonları ve Sag  Tarafa silder Ekler

Sosyalleşme düğmesini etkinleştir
İlk gönderideki Facebook Beğen paylaş simgesini konuda göster
İlk gönderide Twitter paylaş simgesini konuda göster
İlk gönderide Google +1 paylaş simgesini konuda göster
İlk gönderide pinterest paylaş simgesini konuda göster
İlk gönderide linkedint paylaş simgesini konuda göster
İlk gönderide tumblr paylaş simgesini konuda göster
İlk gönderide rss simgesini konuda göster
İlk gönderide whatsapp paylaş simgesini konuda göster
İlk gönderide reddit paylaş simgesini konuda göster
İlk gönderide digg paylaş simgesini konuda göster


License



Turkish
Bu eser Creative Commons Atıf-GayriTicari-AynıLisanslaPaylaş 4.0 Uluslararası lisansı ile lisanslanmıştır. Lisansın bir kopyası için, http://creativecommons.org/licenses/by-nc-sa/4.0/ linkini ziyaret edin.

Creative Commons Lisansı




English

Creative Commons License


This work is licensed under the Creative Commons Attribution-Non-Grace-Same LicenseShare 4.0 International License. For a copy of the license, visit http://creativecommons.org/licenses/by-nc-sa/4.0/.

mod  ile ilgili görseller

7


7


7


7



indirme linki :
http://www.smf.gen.tr/smf/index.php?action=dlattach;topic=2497.0;attach=2139

#47
social sharing mode

Adds social buttons to the topic compatible with 2.0 and 2.1 and adds Sidebar


smf 2.1 ,2.0.x Font Awesome Icons

Enable socializing page

smf 2.1

Enable socialization page
Show stuff like first on Facebook
Share things on Twitter at first post
Show Google +1 shared stuff on first post
Show whatsapp can be shared on the first post
Show rss falls on the first post
Show things to share on pinterest on first post
Show things that can be shareded on the first post
Show on tumblr what's on first post on topic
Reddit share resolution' on first post
Show what you want to share in Digg on first post

Activate the Silder sidebar
activate facebook silder
Enter facebook address in the box next to
activate twitter silder
Enter twitter address in the box next to
Enable RSS silder
Enter the RSS address in the box next to
Activate Googleplus silder
Enter Googleplus address in the box next to
Activate Pinterest silder
Enter Pinterest address in the box next to
Activate Whatsapp silder
Do not forget to enter country code (+9) in the box next to Enter your phone number SAMPLE for example +95544442222



smf 2.0.15

Enable socialization page
Show stuff like first on Facebook
Share things on Twitter at first post
Show Google +1 shared stuff on first post
Show whatsapp can be shared on the first post
Show rss falls on the first post
Show things to share on pinterest on first post
Show things that can be shareded on the first post
Show on tumblr what's on first post on topic
Reddit share resolution' on first post
Show what you want to share in Digg on first post

Activate the Silder sidebar
activate facebook silder
Enter facebook address in the box next to
activate twitter silder
Enter twitter address in the box next to
Enable RSS silder
Enter the RSS address in the box next to
Activate Googleplus silder
Enter Googleplus address in the box next to
Activate Pinterest silder
Enter Pinterest address in the box next to
Activate Whatsapp silder
Do not forget to enter country code (+9) in the box next to Enter your phone number SAMPLE for example +95544442222

Turkish

SMF 2.1 ,2.0 için  Sosyal Aglarda Paylaş butonları ve Sag  Tarafa silder Ekler

Sosyalleşme düğmesini etkinleştir
İlk gönderideki Facebook Beğen paylaş simgesini konuda göster
İlk gönderide Twitter paylaş simgesini konuda göster
İlk gönderide Google +1 paylaş simgesini konuda göster
İlk gönderide pinterest paylaş simgesini konuda göster
İlk gönderide linkedint paylaş simgesini konuda göster
İlk gönderide tumblr paylaş simgesini konuda göster
İlk gönderide rss simgesini konuda göster
İlk gönderide whatsapp paylaş simgesini konuda göster
İlk gönderide reddit paylaş simgesini konuda göster
İlk gönderide digg paylaş simgesini konuda göster


License



Turkish
Bu eser Creative Commons Atıf-GayriTicari-AynıLisanslaPaylaş 4.0 Uluslararası lisansı ile lisanslanmıştır. Lisansın bir kopyası için, http://creativecommons.org/licenses/by-nc-sa/4.0/ linkini ziyaret edin.

Creative Commons Lisansı




English

Creative Commons License


This work is licensed under the Creative Commons Attribution-Non-Grace-Same LicenseShare 4.0 International License. For a copy of the license, visit http://creativecommons.org/licenses/by-nc-sa/4.0/.

mod  ile ilgili görseller

7


7


7


7


Bu bölümdeki eklentileri göremezsiniz.

modu indirmek için  aşadaki adresi ziyaret edinn
https://www.replikacep.com/smf-20-ve-21-icin-konu-ici-sosyal-paylas-modu-social-sharing-mode-t35312.0.html
#48
modun orjinali ile arasında degişiklik olmuştur    whatsapp  eklenmiştir  güle güle kullanın







smf 2.0  ve 2.1 ile uyumludur
#49
gördügüm kadarıyla  smf de şimdiye kadar whatsapp ile paylaş kimse  paylaşmamış konumuz ilk  olsun  :)

bu  paylaşım  www.replikacep.com paylaşımıdır  :D


Display.template.php  de bul


</div>
 <br />';
 }
 }

 // Are there any custom profile fields for above the signature?


ustune ekle


<a class="watsapp" href="whatsapp://send?text=', $scripturl, '?topic=', $context['current_topic'], '" data-counturl="', $scripturl, '?topic=', $context['current_topic'],  'data-action="share/whatsapp/share" target="blank"><img alt="watsapp" src="https://www.replikacep.com/Themes/Replikacep/images/watsap.png"/></a>


pc de gözükmesin  diyorsan

index .css de en sona ekle

@media (min-width:600px) {
.watsapp {        
display:none !important;    
} }


#50
Ceşitli / SMF 2.1 canonical etiketi
29 Ağu 2018, 01:10
Anti-SID canonical tag - without PHPSESSID param

Canonical Etiketi Nedir?

Arama motorları tarafından aynı içeriğin iki farklı link yapısı ile ulaşılması sonucunda örümceklerin hangi linki baz alacağını rel canonical etiketi ile belirtmemizi sağlar.

Örneğin 2 farklı linkimiz bir kategori sayfasına ulaşıyor olsun.

replikacep.com/teknoloji-haber
replikacep.com/teknoloji-haberleri

Bu iki sayfanın içerik olarak aynı olması ve bizim sadece 1. Linkte göstermek istediğimiz bir widgetten dolayı 2 linke çıkarmamız gerektiğini düşünelim.

Asıl olarak arama motorlarının /teknoloji-haberleri linkini baz almasını istiyorsak 1. Linkteki meta taglara arasına rel canonical etiketini de eklememiz gerekmektedir.

<link rel=ââ,¬Âcanonicalââ,¬Â href=ââ,¬Âhttps://www.replikacep.com/teknoloji-haberleriââ,¬Â />

Bu şekilde arama motoru örümcekleri /teknoloji-haber linkine ulaşsa dahi bu urlââ,¬â,,¢in bulunduğu linki değil rel etiketi ile verilen /teknoloji-haberleri urlââ,¬â,,¢ini baz alacaktır.

Canonical etiketi kullanarak aynı içeriğe sahip fakat linkleri farklı olan sayfalarınızın arama motorları tarafından kopya içerik algılanmasını önleyebilirsiniz.

örnek  konu : </style><link rel="canonical" href='https://www.replikacep.com/index.php/topic,24619.0.html'; />

https://www.replikacep.com/n7100-galaxy-note-2-n7100xxufnl1-turkiye-442-factory-firmware-4-dosyali-t24619.0.html

SMF 2.1 BETA İÇİN  EKTEKİ MODU İNDİRİP KURUNUZ

sayfa içerigi  resmi


#51
Bu değişiklik, satın almayı planladıkları belirli mallar için toplu olarak satın almak için ölçek ekonomisi indirimi elde etmek için bir araya gelen fikirli insanları bir araya getiriyor. Büyük bir örnek, aynı kasabada yaşayan ve bu şekilde bazı malları satın almak için fiyatı düşüren çok sayıda insan grubudur. Lütfen tam mod açıklamasına bakın





https://custom.simplemachines.org/mods/index.php?mod=4109
#52
Bu değişiklik foruma 3 BBCodes ekler: spoiler, changelog ve offtopic. Bu bb kodları, yazarın post içindeki içeriği gizlemesine izin verir, bu da kullanıcıya gösterilmek için tıklanabilir.

Bu BBCode formları alır:
Kod: [Seç]

[table]
[tr]
[td][nobbc]
[nobbc][spoiler]{content}[/spoiler][/nobbc]
[nobbc][spoiler {params}]{content}[/spoiler][/nobbc]
[nobbc][spoiler=Some Text]{content goes here}[/spoiler][/nobbc]
[/nobbc][/td]
[/tr]
[/table]



{Params} bölümü aşağıdaki parametrelerden biri olabilir:
o text - Başlıkta varsayılan "Spoiler" metnini değiştirir.
o quote - Üstbilgideki "Spoiler" metnini izleyen metin. Tırnak içinde olmalı.
o show - Başlıkta varsayılan "Göster" metnini değiştirir.
o hide - Başlıktaki varsayılan "Gizle" metnini değiştirir.
o Konuklar - Spoyleri misafirlere gösterecek veya göstermeyecek şekilde işaretleyin. N, hayır, yanlış, evet, evet veya doğru olabilir.
o log - Spoyleri görüntüleyenlerin günlüğünü etkinleştirmek / devre dışı bırakmak için işaretleyin.
o log_id - DÜZENLEMEYİN! Log parametresini, izlediğimiz spoyler sayısı ile otomatik olarak değiştirir.



https://custom.simplemachines.org/mods/index.php?mod=4166
#53
Ultimate Bot / Spider / Bad Kullanıcı avcı! BotBanish, botları / örümcekleri / kötü kullanıcıları davranışları ile izleyecek ve tanıyacak ve bunları kullanıcı müdahalesi olmaksızın sisteminizden çıkaracaktır. Web sitelerinizden ve forumlarınızdan kötü bot / örümcekleri / kötü kullanıcıları dinamik olarak engelleyin. BotBanish ayrıca Hizmet Reddi, SQL / PHP enjeksiyonu ve uzaktan kontrol saldırılarına karşı savunmaya da yardımcı olacak. Yeni botları otomatik olarak keşfeder. Sadece yükleyin ve unutun! BotBanish gerisini halledecek. BotBanish, başkalarının bilmediği şeyleri otomatik olarak engelleyecek ve davranışları ve imzaları ile yeni botları keşfedecek. Tüm botlar robot.txt dosyalarına uymaz, ancak onları da keşfeder ve durdururuz. BotBanish, istenmeyen trafiğe karşı en iyi savunmanızdır.

BotBanish SMF, OpenCart, WordPress ve Web sitelerini izlemek ve korumak için yapılır.
Bu Paket şu anda sadece Apache, PHP ve MySQL sistemlerinde SMF için çalışıyor!


https://custom.simplemachines.org/mods/index.php?mod=4158


#54
Modifikasyon Adı: Real Popup with AdBlock Detection
Yazar: dougiefresh
Uyumluluk:2.1

Modu kurun ardından admin panel  yapılandırma modıfakyan ayarları  Real Popups  buradan aktif ediniz


mod ne işe yarar bülten aboneligi  saglar  siteye girişte acılır pencerede   mail adresi obenelik için ister






[download]
https://custom.simplemachines.org/mods/index.php?mod=4096
[/download]
#56
Modifikasyon Adı: Avatars on Board and/or MessageIndex

Uyumluluk: 2.1 beta  sürüm

https://www.replikacep.com/ farkı ile

güle güle kullanın

modu 2.1 kullananlar için yapmış bulunmaktayım  

Manuel  kurmayi bilmeyenler ekteki paketi indirip kurabilir









manuel kurulum

BoardIndex.template.php bul :

// Show some basic information about the number of posts, etc.
 echo '
 </div>
 <div class="board_stats">
 <p>', comma_format($board['posts']), ' ', $board['is_redirect'] ? $txt['redirects'] : $txt['posts'], '
 ', $board['is_redirect'] ? '' : '<br> ' . comma_format($board['topics']) . ' ' . $txt['board_topics'], '
 </p>
 </div>
 <div class="lastpost ',!empty($board['last_post']['id']) ? 'lpr_border' : 'hidden', '">';

 if (!empty($board['last_post']['id']))
 echo '
 <p>', $board['last_post']['last_post_message'], '</p>';
 echo '
 </div>';

degiştir


// Show some basic information about the number of posts, etc.
 echo '
 </div>
 <div class="board_stats">
 <p>', comma_format($board['posts']), ' ', $board['is_redirect'] ? $txt['redirects'] : $txt['posts'], '
 ', $board['is_redirect'] ? '' : '<br> ' . comma_format($board['topics']) . ' ' . $txt['board_topics'], '
 </p>
 </div>
 <div class="lastpost ',!empty($board['last_post']['id']) ? 'lpr_border' : 'hidden', '">';

 if (!empty($board['last_post']['id']))
 echo '
 <p>'.$board['last_post']['member']['avatar']['image'].' ', $board['last_post']['last_post_message'], '</p>';
 echo '
 </div>';


bul

function template_ic_block_recent()
{
 global $context, $scripturl, $settings, $txt;

degiştir

function template_ic_block_recent()
{
 global $context, $scripturl, $settings, $txt,$memberContext;


index.template.php bul

$settings['avatars_on_boardIndex'] = false;
degiştir

$settings['avatars_on_boardIndex'] = true;

index.css en sona ekle

.sonileti .avatar, .lastpost img.avatar {
 float:left;
    width: 40px;
    height: 40px;
 border-radius:50%;
 border: 1px solid #ccc;
    overflow: hidden;
}


ÖN İZLEME RESİM
#57
takip ettiklerime göre  2.1 rc version  yıl sonu gelmeden yayımlanacak  çok küçük pürüzler  kalmış

 
simplemachines sitesinde  yazılanları okuyabilirsiniz

https://www.simplemachines.org/community/index.php?topic=554301.120
#58
modu indirmek isteyenler  linki kullanabilir  modu test etmedim  ama calışıyor  :D  kurulum sıkıntısız






indirme linki :

http://www.smf.gen.tr/smf/index.php?action=dlattach;topic=2237.0;attach=1956



ayarları yapmak için gerekli site  :D

www.oneall.com
#59
  smf 2.0.15  kullanan arkadaşkar   ISO-8859-9  Dan UTF-8 geçmenizi öneriyorum   2.1 e geçerken sıkıntı olabilir

ve 2.0.15 de kalsanız bile arama motorlarında   daha ön sıralara çıkmanızı saglar UTF-8  e geçmekte sıkıntı yaşıyorsanız

ücretli geçirilir :)
#60
phpmyadmin  e giriyoruz   ardından smf_membergroups  bu tabloya tıklıyoruz

ardından hangi üye gurubuna rank eklemek istiyorsak onu  düzenle diyoruz

ve aşadaki resimdeki gibi düzenliyoruz

RC version çıkana kadar böyle idare ediniz  :D

rank şuraya atalım  : /public_html/Themes/default/images/membericons







sonuç  :