Googlebot & Spiders
Yapan:Omar Bazavilvazo
Çeviri: İvan_
Uyum: 1.0.6, 1.0.8, 1.1 RC2, 1.1 RC3, 1.1.2
Açıklama: Googlebot & Spiders Sitenize Gelen Google, Yahoo Vs.. Botları Kimler Online listesinde Görüntülemeye Yarar..
Default Tema Kullananlar İçin Ekteki Dosyayı İndirip Paket Yükleyiciden Kurmak kafi
Kurulumu Bitirdikten Sonra;
Kontrol Paneli/Üye İzinleri/ Üye Guruplarınızı Düzenleyip
Görüntüle Googlebot & Spiders Şıkkını Aktif Etmeniz Gerekmektedir.
Aksi Taktirde Adminler Haricinde Kimse Modifikasyonu Göremez. Diğer Temaları Kulananlar İse Paketi Yükledikten Sonra Şu Değişiklikleri Yapsınlar; index.template.php
Bul;
if ($context['show_load_time'])
echo '
<span class="smalltext">', $txt['smf301'], $context['load_time'], $txt['smf302'], $context['load_queries'], $txt['smf302b'], '</span>';
Öncesine Ekle;
if (isset($context['ob_googlebot_stats']))
echo '
<br /><br /><span class="smalltext">', $txt['ob_googlebot_stats_lastvisit'], timeformat($context['ob_googlebot_stats']['Googlebot']['lastvisit']), '</span>';
BoardIndex.template.php
Bul;
$context['num_guests'], ' ', $context['num_guests'] == 1
Öncesine Ekle;
(empty($context['spiders']) ? '' : $context['num_spiders'] . ' ' . ($context['num_spiders'] == 1 ? $txt['ob_googlebot_spider'] : $txt['ob_googlebot_spiders']) . ', '),
Bul;
', $txt[140], ':<br />', implode(', ', $context['list_users_online']);
if (!empty($context['spiders']))
{
if ($modSettings['ob_googlebot_display_own_list'])
echo '
<br />
', $txt['ob_googlebot_spiders_last_active'], ':<br />';
else
{
if (empty($context['users_online']))
echo '
', $txt[140], ':<br />';
else
echo ', ';
}
echo implode(', ', $context['spiders']);
}