Post İcon Modu İndex.php de göstermek

phpBB 2.0.x sürümleri için MODlar hakkında ihtiyacınız olan desteği buradan sorarak alabilirsiniz.
Kilitli
zuper
Kayıtlı Kullanıcı
Mesajlar: 132
Kayıt: 12.04.2006, 16:07

Post İcon Modu İndex.php de göstermek

Mesaj gönderen zuper »

arkadaşlar post icon modunu plus 1.53 aynısını bulup 2.0.21 e kurdum ama sadec viewforum ve viewtopic de görebiliyorum indexte son mesaj yazılan başlığın iconunu göstermek istiyorum bunu nasıl yapabilirim aynı plus 1.53 gibi.
Kullanıcı avatarı
dj_akman
Kayıtlı Kullanıcı
Mesajlar: 851
Kayıt: 05.04.2006, 15:57
Konum: İstanbul
İletişim:

Mesaj gönderen dj_akman »

Vbulletindeki Gibi İndexte Gösterimden Bahsediyorsun Sanırım.Şu Ana Kadar Bu Mod İçin Böle Bi Eklentiye Rastlamadım Ama Böle Bişi Olursa Çok Hoş Olur Bende Bu Modu Kullandığım İçin..
zuper
Kayıtlı Kullanıcı
Mesajlar: 132
Kayıt: 12.04.2006, 16:07

Mesaj gönderen zuper »

ewet kardeş aynı Vbullettindeki gibi oluyor Örnek Olarak Plus 1.53 ve Nefritin Sitesi Olan Aysavascisi.com da da vardı bir cevap çıkacağından umutluyum. :lol:
Kullanıcı avatarı
NEFRİT
Uzaklaştırıldı
Mesajlar: 1404
Kayıt: 28.01.2006, 04:15
Konum: DarkKingdom
İletişim:

Mesaj gönderen NEFRİT »

Evt hemen bu soruyu resmi phpbb.com a taşıyorum yakın zamanda modun yazarından eminimki cevap alırız.

SORUNUZ ;
http://www.phpbb.com/phpBB/viewtopic.ph ... t=#2393950

ANA MESAJ ;
http://www.phpbb.com/phpBB/viewtopic.ph ... sc&start=0
Özellerden kullanıcılara reklam yaptığım için sayın yöneticim beni uzaklaştırdı.
zuper
Kayıtlı Kullanıcı
Mesajlar: 132
Kayıt: 12.04.2006, 16:07

Mesaj gönderen zuper »

NEFRİT yazdı:Evt hemen bu soruyu resmi phpbb.com a taşıyorum yakın zamanda modun yazarından eminimki cevap alırız.

SORUNUZ ;
http://www.phpbb.com/phpBB/viewtopic.ph ... t=#2393950

ANA MESAJ ;
http://www.phpbb.com/phpBB/viewtopic.ph ... sc&start=0

ilgilendiğin için saol aga ama bu mod sende yok muydu.ben senin sitende gördüm gibi. :shock:
tomerec
Kayıtlı Kullanıcı
Mesajlar: 107
Kayıt: 02.09.2006, 02:53
İletişim:

Mesaj gönderen tomerec »

bu sorunun cevabı verildimi bilmiyorum verildiyse kusura bakmayın
bu eklenti ile forumunda post icon kurulu olanlar ana sayfada son konuların başında iconları göstere bilirler

Kod: Tümünü seç

############################################################## 
## MOD Title: Index AddOn for Post Icons MOD 
## MOD Author: Darezettl <darezettl> (Thomas Zettl) http://darezettl.de 
## MOD Description: Shows Post Icons on the Forum Index 
## MOD Version: 0.0.1 
## 
## Installation Level: easy 
## Installation Time: 
## Files To Edit: 2 
##                index.php 
##                templates/subSilver/index_body.tpl 
## Included Files: n/a 
############################################################## 
## For Security Purposes, Please Check: http://www.phpbb.com/mods/downloads/ for the 
## latest version of this MOD. Downloading this MOD from other sites could cause malicious code 
## to enter into your phpBB Forum. As such, phpBB will not offer support for MODs not offered 
## in our MOD-Database, located at: http://www.phpbb.com/mods/downloads/ 
############################################################## 
## Before Adding This MOD To Your Forum, You Should Back Up All Files Related To This MOD 
############################################################## 
# 
#-----[ OPEN ]------------------------------------------ 
# 
index.php 

# 
#-----[ FIND ]------------------------------------------ 
# 

include($phpbb_root_path . 'common.'.$phpEx); 

# 
#-----[ AFTER, ADD ]------------------------------------------ 
# 

include($phpbb_root_path . 'includes/def_icons.'. $phpEx); 

# 
#-----[ FIND ]------------------------------------------ 
# 

$sql = "SELECT f.*, p.post_time, p.post_username, u.username, u.user_id, t.topic_title, t.topic_last_post_id " . 

# 
#-----[ IN-LINE FIND ]------------------------------------------ 
# 

t.topic_title, 

# 
#-----[ BEFORE, ADD ]------------------------------------------ 
# 

t.topic_icon, 

# 
#-----[ FIND ]------------------------------------------ 
# 

$row_class = ( !($i % 2) ) ? $theme['td_class1'] : $theme['td_class2']; 

# 
#-----[ AFTER, ADD ]------------------------------------------ 
# 

$icon = get_icon_title($forum_data[$j]['topic_icon'], 1, $type); 
if( !empty($icon) ) 
{ 
$template->assign_block_vars('catrow.forumrow.switch_forum_link_off.switch_icon', array()); 
} 

# 
#-----[ FIND ]------------------------------------------ 
# 

'TOPICS' => $forum_data[$j]['forum_topics'], 

# 
#-----[ AFTER, ADD ]------------------------------------------ 
# 

'ICON' => $icon, 

# 
#-----[ OPEN ]------------------------------------------ 
# 
templates/subSilver/index_body.tpl 

# 
#-----[ FIND ]------------------------------------------ 
# 

{catrow.forumrow.LAST_POST} 

# 
#-----[ BEFORE, ADD ]------------------------------------------ 
# 

<!-- BEGIN switch_icon --> 
{catrow.forumrow.ICON}&nbsp; 
<!-- END switch_icon -->
modun orjinal yeri : http://www.phpbb.de/viewtopic.php?t=121 ... +icons+mod

not : Forum icon kurulu ise çakışma yapabilir bunun icin bu eklentideki icon yazan yerleri 'icone' yada 'icones' yaparsanız sorun hal olur
örnek : 'ICON' => $icon, --------->'ICONE' => $icone,
zuper
Kayıtlı Kullanıcı
Mesajlar: 132
Kayıt: 12.04.2006, 16:07

Mesaj gönderen zuper »

teşekkürler tomerec saol :lol:
Kilitli

“2.0.x MOD Destek” sayfasına dön

Kimler çevrimiçi

Bu forumu görüntüleyen kullanıcılar: Bing [Bot] ve 5 misafir