Arkadaslar SMF kullanacagim.
Sol da (forum basliklarinin yaninda 'on' 'off') resimleri var.. Hepsi ayni.. Ben her bir baslik icin degisik resim kullanmak istiyorum.
Bunu nasil yapabilirim?
Mutlaka bu konu bu forumda islenmistir diye dusunuyorum. Linki verebilirseniz deneyecegim.
Tesekkurler.
katicon modunu yükle.her konuya farklı resim koyabilirsin.
BoardIndex.template.php dosyasinda bunu bul:
/ If the board is new, show a strong indicator.
if ($board['new'])
echo '<img src="', $settings['images_url'], '/on.gif" alt="', $txt[333], '" title="', $txt[333], '" border="0" />';
// This board doesn't have new posts, but its children do.
elseif ($board['children_new'])
echo '<img src="', $settings['images_url'], '/on2.gif" alt="', $txt[333], '" title="', $txt[333], '" border="0" />';
// No new posts at all! The agony!!
else
echo '<img src="', $settings['images_url'], '/off.gif" alt="', $txt[334], '" title="', $txt[334], '" border="0" />';Değiştir:
// If the board is new, show a strong indicator.
if ($board['new'])
echo '<img src="', $settings['images_url'], '/katicon/on_' . $board['id'] . '.gif" alt="', $txt[333], '" title="', $txt[333], '" border="0" />';
// This board doesn't have new posts, but its children do.
elseif ($board['children_new'])
echo '<img src="', $settings['images_url'], '/katicon/on_' . $board['id'] . '.gif" alt="', $txt[333], '" title="', $txt[333], '" border="0" />';
// No new posts at all! The agony!!
else
echo '<img src="', $settings['images_url'], '/katicon/off_' . $board['id'] . '.gif" alt="', $txt[334], '" title="', $txt[334], '" border="0" />';sıra geldi gifleri hazırlamaya
tema/images klasöründe katicon adında klasör ekliyoruz ve daha sonra konularımızın board numaralarını bi yere not ederek on_(board numarası).gif ve off_(board numarası).gif şeklinde giflerimizi oluşturuyoruz