8 December 2008, 18:29
|
Senior Member
|
|
Kayıt Tarihi: 21 September 2008
Mesajlar: 15,180
Konular:
|
|
Konu İçerini Görmek İçin Üye Olunuz
Admin Panel >> Style Yöneticisi >> Temaları Düzenle >> postbit_legacy templatesini açıyoruz ve aşağıdaki kodu buluyoruz.
PHP- Kodu:
PHP- Kodu:
<!-- message --> <div id="post_message_$post[postid]">$post[message]</div> <!-- / message -->
Bununla Degiştirin:
PHP- Kodu:
PHP- Kodu:
<!-- Post extension --> <if condition="$show['guest']"> <center><b><font size="5">KONUNUN İÇERİGİNİ GÖREBİLMEK İÇİN </font></b><a href="register.php"><b><font size="6">Kayıt Olmanız Gerekir Lütfen Buraya Tıklayarak Kayıt Olunuz. </font></b></a></center> </div> <else /> <!-- message --> <div id="post_message_$post[postid]">$post[message]</div> <!-- / message --> </if> <!-- / Post extension -->
|