www.cakal.net Forumları YabadabaDuuuee  

Geri Git   www.cakal.net Forumları YabadabaDuuuee > Forum > Eskiler (Arşiv)

Eskiler (Arşiv) Eski konular

CevaplaCevapla
 
Konu Araçları Görünüm Modları
Old 06-25-2007, 08:56 PM   #1
TiTaN
ÇaKaL Üye
 
Üyelik Tarihi: Jun 2007
Konum: Houston
Mesajlar: 1,880
Teşekkür Etme: 32
Thanked 29 Times in 24 Posts
Üye No: 43307
İtibar Gücü: 1769
Rep Puanı : 7482
Rep Derecesi : TiTaN has a reputation beyond reputeTiTaN has a reputation beyond reputeTiTaN has a reputation beyond reputeTiTaN has a reputation beyond reputeTiTaN has a reputation beyond reputeTiTaN has a reputation beyond reputeTiTaN has a reputation beyond reputeTiTaN has a reputation beyond reputeTiTaN has a reputation beyond reputeTiTaN has a reputation beyond reputeTiTaN has a reputation beyond repute
Cinsiyet : Erkek
Varsayılan sitenize teşekkür botu ekleyin

Sitenizde vB deki gibi tesekkür botu koymak istermisiniz ?

Simple Machines - Thank You Mod
__________________
I walk this empty street on the boulevard of broken dreams where the city sleeps and I'm the only one and I walk alone!!
TiTaN çevrimdışı   Alıntı ile Cevapla
Old 06-25-2007, 08:57 PM   #2
TiTaN
ÇaKaL Üye
 
Üyelik Tarihi: Jun 2007
Konum: Houston
Mesajlar: 1,880
Teşekkür Etme: 32
Thanked 29 Times in 24 Posts
Üye No: 43307
İtibar Gücü: 1769
Rep Puanı : 7482
Rep Derecesi : TiTaN has a reputation beyond reputeTiTaN has a reputation beyond reputeTiTaN has a reputation beyond reputeTiTaN has a reputation beyond reputeTiTaN has a reputation beyond reputeTiTaN has a reputation beyond reputeTiTaN has a reputation beyond reputeTiTaN has a reputation beyond reputeTiTaN has a reputation beyond reputeTiTaN has a reputation beyond reputeTiTaN has a reputation beyond repute
Cinsiyet : Erkek
Varsayılan

Türkçe Teşekkür Botu Kurulumu:

İlk Sitenizin Kontrol Paneline Girin ve MySQL'e Tiklayin.. Daha Sonra Alttan PhpMYAdmin'e Tıklayin.. Daha Sonra Veritabani'niza Tiklayin..

Veritabani Tablolariniz Acilacaktir.. Ordan En Ustteki SQL Yazan Yere Tiklayip Alttaki Kutuya TEKER TEKER Verdiğim Kodlari Giriyorsunbuz ve GO(Git) 'e Tiklayin..:


Kod:
-----------------------------------------------------------------------
ALTER TABLE `forum` ADD `showthanks` INT(1) DEFAULT '0' NOT NULL;
-----------------------------------------------------------------------
Bidaha Ayni Sekilde Sunu Ekliyoruz..


Kod:
-----------------------------------------------------------------------
ALTER TABLE `forum` ADD `showthanks_date` INT(1) DEFAULT '0' NOT NULL;
-----------------------------------------------------------------------
Ve Son Olarak Yine Ayni Sekilde Alttaki Kodlari Ekleyin..


Kod:
-----------------------------------------------------------------------
CREATE TABLE `thanks` (
`id` INT(10) NOT NULL AUTO_INCREMENT PRIMARY KEY,
`userid` INT(10) NOT NULL,
`username` VARCHAR(50) NOT NULL,
`date` INT(10) NOT NULL,
`threadid` INT(10) NOT NULL
);
-----------------------------------------------------------------------

Simdilik Kontrol Panel isLemi Bitti..

Simdi Sitenizin (vbullettin) Admin Kontrol Paneline Girin Cümle Yönetiminden..:
Asagidakileri Ekleyin..

------------------------------------------------------------------------
Type : Forum related
Varname : show_thanks_button
Phrase : Display the 'Thank you' button
------------------------------------------------------------------------
Type : Control Panel Global
Varname : enable_disable_thankyou
Phrase : Thank you button
------------------------------------------------------------------------
Type : Forum related
Varname : show_thanks_date
Phrase : Display the date in the thanks post
------------------------------------------------------------------------
Type : GLOBAL
Varname : thanks
Phrase : Thank for this message !
------------------------------------------------------------------------
Type : Front-End Error Messages
Varname : already_thanks
Text : You have already thank this message !
------------------------------------------------------------------------
Type : Front-End Redirect Messages
Varname : thanks
Text : Thank you. Your choice was recorded, you will now be redirected to the thread.
------------------------------------------------------------------------
Type : GLOBAL
Varname : thanks_bot
Phrase : Thank you Bot
------------------------------------------------------------------------
Type : GLOBAL
Varname : thanks_title
Phrase : Thank you Bot
------------------------------------------------------------------------
Type : GLOBAL
Varname : thanks_1_install
Phrase : thanks {1} for this thread
------------------------------------------------------------------------
Type : GLOBAL
Varname : thanks_x_install
Phrase : thank {1} for this thread
------------------------------------------------------------------------

Bunlar ingiLizcesi taBi aLLtaki Kutucugada Turkce'lerini Yaziyorsunuz..

Simdi FTP'den admincp/forum.php 'u Duzenlicez..

forum.php'yi acip alttaki kodu aratin.. ( F3 )


Kod:
-----------------------------------------------------------------------
print_yes_no_row($vbphrase['show_forum_on_forum_jump'], 'options[showonforumjump]', $forum['showonforumjump']);
-----------------------------------------------------------------------
Alttaki Kodu Yukarıdaki Kodun Üzerinde Ekleyin..


Kod:
-----------------------------------------------------------------------
print_table_header($vbphrase['enable_disable_thankyou']);
print_yes_no_row($vbphrase['show_thanks_button'], 'forum[showthanks]', $forum['showthanks']);
print_yes_no_row($vbphrase['show_thanks_date'], 'forum[showthanks_date]', $forum['showthanks_date']);
-----------------------------------------------------------------------
Simdi Ana Klasorden newreply.php 'yi duzenliyecegiz..

Alttaki Kodu Aratiyoruz..

Kod:
-----------------------------------------------------------------------
// ############################### start post reply ###############################
if ($_POST['do'] == 'postreply')
{
-----------------------------------------------------------------------
Üstteki Kodun Üstüne Alttaki Kodu Ekliyoruz..


Kod:
-----------------------------------------------------------------------
// ############################### Than you hack Grog6 ###############################
if ($_REQUEST['do'] == 'thanks')
{
globalize($_REQUEST, array('threadid' => INT));
if ($foruminfo[showthanks]==0 || $bbuserinfo[userid]==0)
print_no_permission();
else
{
$verif=$DB_site->query_first("SELECT userid FROM ". TABLE_PREFIX ."thanks WHERE threadid='$threadid' AND userid='$bbuserinfo[userid]'");
if ($verif[userid]==$bbuserinfo[userid])
eval(print_standard_error('error_already_thanks')) ;
else
{
$DB_site->query("
INSERT INTO ". TABLE_PREFIX ."thanks
(userid, username, date, threadid)
VALUES ('$bbuserinfo[userid]', '" . addslashes($bbuserinfo[username]) . "', " . TIMENOW . ", '$threadid')");
$url = "showthread.php?$session[sessionurl]t=$threadid";
eval(print_standard_redirect('redirect_thanks'));
}
}
}
-----------------------------------------------------------------------
Simdi includes/functions_showthread.php 'yi duzenliyecegiz..

Alttaki Kodu Aratiyoruz..


Kod:
-----------------------------------------------------------------------
// hide users in Coventry from non-staff members
if ($tachyuser = in_coventry($post['userid']) AND !can_moderate($thread['forumid']))
{
return;
}
-----------------------------------------------------------------------
Bu Kodlarin Uzerine Alttaki Kodlari Ekliyoruz..


Kod:
-----------------------------------------------------------------------
// thank you hack grog6
$cmpt=1;
if ($forum[showthanks] == 1 && $post[postcount]==1)
{
$thanks=$DB_site->query("SELECT * FROM ". TABLE_PREFIX ."thanks WHERE threadid='$thread[threadid]' ORDER BY username");
$nb=$DB_site->num_rows($thanks);
if ($nb>0)
{
while($thank=$DB_site->fetch_array($thanks))
{
if ($cmpt<$nb)
$virg=",";
else $virg="";
if ($forum[showthanks_date]==0)
$liste_user = $liste_user." <a href=\"member.php?u=$thank[userid]\">$thank[username]</a>$virg ";
else
{
$date_thank = vbdate($vboptions['dateformat'], $thank['date'], true);
$liste_user = $liste_user." <a href=\"member.php?u=$thank[userid]\">$thank[username]</a> ($date_thank)$virg ";
}
$date=$thank[date];
$cmpt++;
}
// format date/time
$post['postdate'] = vbdate($vboptions['dateformat'], $date, true);
$post['posttime'] = vbdate($vboptions['timeformat'], $date);
// user profil field
$username = "<b><font size=\"3\">$vbphrase[thanks_bot]</font></b>";
if ($nb<=1)
$thank_phrase = construct_phrase($vbphrase[thanks_1_install], $post[musername]);
else $thank_phrase = construct_phrase($vbphrase[thanks_x_install], $post[musername]);
if ($vboptions[legacypostbit]=="000")
eval('$thanks_post .= " ' . fetch_template('thanks_postbit') . '";');
else eval('$thanks_post = " ' . fetch_template('thanks_postbit_legacy') . '";');
}
}
// thank you hack grog6
-----------------------------------------------------------------------
Editleme isimiz bitti..

Simdi Admin Kontrol Panelinden Template Yonetimine Girin.. Kullandiginiz Templateyi Duzenleyi Acin..

SHOWTHREAD template yi acin..

Asagidaki Kodlari Aratin..


Kod:
-----------------------------------------------------------------------
<if condition="$show['largereplybutton']">
<td class="smallfont"><a href="newreply.php?$session[sessionurl]do=newreply&amp;noquote=1&amp;p=$FIRSTPOSTID"><if condition="$show['closethread']"><img src="$stylevar[imgdir_button]/reply.gif" alt="$vbphrase[reply]" border="0" /><else /><img src="$stylevar[imgdir_button]/threadclosed.gif" alt="$vbphrase[closed_thread]" border="0" ></if></a></td>
</if>
-----------------------------------------------------------------------
ve aLttaki kodLarla Degistirin...


Kod:
-----------------------------------------------------------------------
<if condition="$show['largereplybutton']">
<td class="smallfont"><a href="newreply.php?$session[sessionurl]do=newreply&amp;noquote=1&amp;p=$FIRSTPOSTID"><if condition="$show['closethread']"><img src="$stylevar[imgdir_button]/reply.gif" alt="$vbphrase[reply]" border="0" /><else /><img src="$stylevar[imgdir_button]/threadclosed.gif" alt="$vbphrase[closed_thread]" border="0" ></if></a></td>
</if>
<td class="smallfont" align="right"><a href="newreply.php?do=thanks&amp;threadid=$thread[threadid]">
<img src="$stylevar[imgdir_button]/thanks.gif" alt="$vbphrase[thanks]" border="0" >
</a></td>
-----------------------------------------------------------------------
Bu isLemi bir kez daha yapacaksiniz..

Şimdi postbit 'ten postbit_legacy templates 'in en altina alttaki kodu ekliyoruz :


Kod:
-----------------------------------------------------------------------
$thanks_post
-----------------------------------------------------------------------
Yeni Template Olusturdan thanks_postbit ismiNde Bir teMplate oLusturuyoruz..

ve aLttaki Kodlari kopyaLiyoruz..


Kod:
-----------------------------------------------------------------------
$spacer_open
<div style="padding:0px 0px $stylevar[cellpadding]px 0px">
<table class="tborder" id="post$post[postid]" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tr>
<td class="thead" $scrolltothis>
<div class="normal" style="float:$stylevar[right]">
&nbsp;
</div>
<div class="normal">
<!-- status icon and date -->
<a name="post$post[postid]"><img class="inlineimg" src="$stylevar[imgdir_statusicon]/post_old.gif" alt="$post[statustitle]" border="0" /></a>
$post[postdate], $post[posttime]</if>
$post[firstnewinsert]
<!-- / status icon and date -->
</div>
</td>
</tr>
<tr>
<td class="alt2" style="padding:0px">
<!-- user info -->
<table cellpadding="0" cellspacing="$stylevar[cellpadding]" border="0" width="100%">
<tr>
<td nowrap="nowrap">
<div id="postmenu_$post[postid]">
$username </div>
</td>
<td width="100%">&nbsp;</td>
<td valign="top" nowrap="nowrap">
<font class="smallfont"><div>$vbphrase[location_perm]: $vboptions[bbtitle]</font></div>
</td>
</tr>
</table>
<!-- / user info -->
</td>
</tr>
<tr>
<td class="alt1">
<!-- message, attachments, sig -->
<!-- icon and title -->
<div class="smallfont">
<img class="inlineimg" src="images/icons/icon1.gif" alt="Post" border="0" />
<strong>$vbphrase[thanks_title]</strong>
</div>
<hr size="1" style="color:$stylevar[tborder_bgcolor]" />
<!-- / icon and title -->
<!-- message -->
<div>$liste_user $thank_phrase
<br /><br /></div>
<!-- / message -->
</td>
</tr>
</table>
</div>
$spacer_close
<!-- / post #$post[postid] -->
-----------------------------------------------------------------------

Bunlari Ekledikten Sonra Tekrar Yeni Template Ekleden thanks_postbit_legacy isminde bir template oLusturuyoruz..

Kodlarinada Asagidakilari Kopyalayin..


Kod:
-----------------------------------------------------------------------
$spacer_open
<div style="padding:0px 0px $stylevar[cellpadding]px 0px">
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="0" border="0" width="100%" align="center">
<tr>
<td class="thead" style="font-weight:normal" $scrolltothis>
<!-- status icon and date -->
<a name="post$post[postid]"><img class="inlineimg" src="$stylevar[imgdir_statusicon]/post_old.gif" alt="$post[statustitle]" border="0" /></a>
$post[postdate], $post[posttime]</if>
$post[firstnewinsert]
<!-- / status icon and date -->
</td>
<td class="thead" style="font-weight:normal" align="$stylevar[right]">
&nbsp;
</td>
</tr>
<tr valign="top">
<td class="alt2" width="175">
$username
<div class="smallfont">
&nbsp;<br />
<div>$vbphrase[location_perm]: $vboptions[bbtitle]</div> </div>
</td>
<td class="alt1">
<!-- icon and title -->
<div class="smallfont">
<img class="inlineimg" src="$post[iconpath]" alt="images/icons/icon1.gif" border="0" />
<strong>$vbphrase[thanks_title]</strong>
</div>
<hr size="1" style="color:$stylevar[tborder_bgcolor]" />
<!-- / icon and title -->
<!-- message -->
<div>$liste_user $thank_phrase
<br /><br /></div>
</td>
</tr>
<tr>
<td class="alt2">
&nbsp;
</td>
<td class="alt1" align="$stylevar[right]">
&nbsp;
</td>
</tr>
</table>
$spacer_close
<!-- / post #$post[postid] -->
-----------------------------------------------------------------------


En Son Olarakta thanks.gif'î FTP'den Template Klasörünüzdeki images/buttons klasorune ekLiyorsunuz bu kadar.. bitti sonunda..
__________________
I walk this empty street on the boulevard of broken dreams where the city sleeps and I'm the only one and I walk alone!!
TiTaN çevrimdışı   Alıntı ile Cevapla
Old 06-25-2007, 08:59 PM   #3
TiTaN
ÇaKaL Üye
 
Üyelik Tarihi: Jun 2007
Konum: Houston
Mesajlar: 1,880
Teşekkür Etme: 32
Thanked 29 Times in 24 Posts
Üye No: 43307
İtibar Gücü: 1769
Rep Puanı : 7482
Rep Derecesi : TiTaN has a reputation beyond reputeTiTaN has a reputation beyond reputeTiTaN has a reputation beyond reputeTiTaN has a reputation beyond reputeTiTaN has a reputation beyond reputeTiTaN has a reputation beyond reputeTiTaN has a reputation beyond reputeTiTaN has a reputation beyond reputeTiTaN has a reputation beyond reputeTiTaN has a reputation beyond reputeTiTaN has a reputation beyond repute
Cinsiyet : Erkek
Varsayılan

İlk Sitenizin Kontrol Paneline Girin ve MySQL'e Tiklayin.. Daha Sonra Alttan PhpMYAdmin'e Tıklayin.. Daha Sonra Veritabani'niza Tiklayin..

Veritabani Tablolariniz Acilacaktir.. Ordan En Ustteki SQL Yazan Yere Tiklayip Alttaki Kutuya TEKER TEKER Verdiğim Kodlari Giriyorsunbuz ve GO(Git) 'e Tiklayin..:


PHP Kodu:
ALTER TABLE `forum` ADD `showthanks` INT(1) DEFAULT '0' NOT NULL

Bidaha Ayni Sekilde Sunu Ekliyoruz..


PHP Kodu:
ALTER TABLE `forum` ADD `showthanks_date` INT(1) DEFAULT '0' NOT NULL;

Ve Son Olarak Yine Ayni Sekilde Alttaki Kodlari Ekleyin..


PHP Kodu:
CREATE TABLE `thanks` (`id` INT(10) NOT NULL AUTO_INCREMENT PRIMARY KEY, `userid` INT(10) NOT NULL, `username` VARCHAR(50) NOT NULL, `date` INT(10) NOT NULL, `threadid` INT(10) NOT NULL);

Simdilik Kontrol Panel isLemi Bitti..

Simdi Sitenizin (vbullettin) Admin Kontrol Paneline Girin Cümle Yönetiminden..:
Asagidakileri Ekleyin..

------------------------------------------------------------------------
Type : Forum related
Varname : show_thanks_button
Phrase : Display the 'Thank you' button
------------------------------------------------------------------------
Type : Control Panel Global
Varname : enable_disable_thankyou
Phrase : Thank you button
------------------------------------------------------------------------
Type : Forum related
Varname : show_thanks_date
Phrase : Display the date in the thanks post
------------------------------------------------------------------------
Type : GLOBAL
Varname : thanks
Phrase : Thank for this message !
------------------------------------------------------------------------
Type : Front-End Error Messages
Varname : already_thanks
Text : You have already thank this message !
------------------------------------------------------------------------
Type : Front-End Redirect Messages
Varname : thanks
Text : Thank you. Your choice was recorded, you will now be redirected to the thread.
------------------------------------------------------------------------
Type : GLOBAL
Varname : thanks_bot
Phrase : Thank you Bot
------------------------------------------------------------------------
Type : GLOBAL
Varname : thanks_title
Phrase : Thank you Bot
------------------------------------------------------------------------
Type : GLOBAL
Varname : thanks_1_install
Phrase : thanks {1} for this thread
------------------------------------------------------------------------
Type : GLOBAL
Varname : thanks_x_install
Phrase : thank {1} for this thread
------------------------------------------------------------------------

Bunlar ingiLizcesi taBi aLLtaki Kutucugada Turkce'lerini Yaziyorsunuz..

Simdi FTP'den admincp/forum.php 'u Duzenlicez..

enbabaforum.php'yi acip alttaki kodu aratin.. ( F3 )


PHP Kodu:
print_yes_no_row($vbphrase['show_forum_on_forum_jump'], 'options[showonforumjump]', $forum['showonforumjump']);

Alttaki Kodu Yukarıdaki Kodun Üzerinde Ekleyin


PHP Kodu:
print_table_header($vbphrase['enable_disable_thankyou']); print_yes_no_row($vbphrase['show_thanks_button'], 'forum[showthanks]', $forum['showthanks']); print_yes_no_row($vbphrase['show_thanks_date'], 'forum[showthanks_date]', $forum['showthanks_date']);

Simdi Ana Klasorden newreply.php 'yi duzenliyecegiz..

Alttaki Kodu Aratiyoruz..


PHP Kodu:
// ############################### start post reply ###############################if (

Üstteki Kodun Üstüne Alttaki Kodu Ekliyoruz..


PHP Kodu:
// ############################### Than you hack Grog6 ###############################if (

Simdi includes/functions_showthread.php 'yi duzenliyecegiz..

Alttaki Kodu Aratiyoruz..


PHP Kodu:
// hide users in Coventry from non-staff members if ($tachyuser = in_coventry($post['userid']) AND !can_moderate($thread['forumid'])) { return; }

Bu Kodlarin Uzerine Alttaki Kodlari Ekliyoruz..


PHP Kodu:
// thank you hack grog6 $cmpt=1; if ($forum[showthanks] == 1 && $post[postcount]==1) { $thanks=$DB_site->query("SELECT * FROM ". TABLE_PREFIX ."thanks WHERE threadid='$thread[threadid]' ORDER BY username"); $nb=$DB_site->num_rows($thanks); if ($nb>0) { while($thank=$DB_site->fetch_array($thanks)) { if ($cmpt<$nb) $virg=","; else $virg=""; if ($forum[showthanks_date]==0) $liste_user = $liste_user." <a href=\"member.php?u=$thank[userid]\">$thank[username]</a>$virg "; else { $date_thank = vbdate($vboptions['dateformat'], $thank['date'], true); $liste_user = $liste_user." <a href=\"member.php?u=$thank[userid]\">$thank[username]</a> ($date_thank)$virg "; } $date=$thank[date]; $cmpt++; } // format date/time $post['postdate'] = vbdate($vboptions['dateformat'], $date, true); $post['posttime'] = vbdate($vboptions['timeformat'], $date); // user profil field $username = "<b><font size=\"3\">$vbphrase[thanks_bot]</font></b>"; if ($nb<=1) $thank_phrase = construct_phrase($vbphrase[thanks_1_install], $post[musername]); else $thank_phrase = construct_phrase($vbphrase[thanks_x_install], $post[musername]); if ($vboptions[legacypostbit]=="000") eval('$thanks_post .= " ' . fetch_template('thanks_postbit') . '";'); else eval('$thanks_post = " ' . fetch_template('thanks_postbit_legacy') . '";'); } } // thank you hack grog6

Editleme isimiz bitti..

Simdi Admin Kontrol Panelinden Template Yonetimine Girin.. Kullandiginiz Templateyi Duzenleyi Acin..

SHOWTHREAD template yi acin..

Asagidaki Kodlari Aratin


PHP Kodu:
<if condition="$show['largereplybutton']"> <td class="smallfont"><a href="newreply.php?$session[sessionurl]do=newreply&amp;noquote=1&amp;p=$FIRSTPOSTID"><if condition="$show['closethread']"><img src="$stylevar[imgdir_button]/reply.gif" alt="$vbphrase[reply]" border="0" /><else /><img src="$stylevar[imgdir_button]/threadclosed.gif" alt="$vbphrase[closed_thread]" border="0" ></if></a></td> </if>

ve aLttaki kodLarla Degistirin...


PHP Kodu:
<if condition="$show['largereplybutton']"> <td class="smallfont"><a href="newreply.php?$session[sessionurl]do=newreply&amp;noquote=1&amp;p=$FIRSTPOSTID"><if condition="$show['closethread']"><img src="$stylevar[imgdir_button]/reply.gif" alt="$vbphrase[reply]" border="0" /><else /><img src="$stylevar[imgdir_button]/threadclosed.gif" alt="$vbphrase[closed_thread]" border="0" ></if></a></td> </if> <td class="smallfont" align="right"><a href="newreply.php?do=thanks&amp;threadid=$thread[threadid]"><img src="$stylevar[imgdir_button]/thanks.gif" alt="$vbphrase[thanks]" border="0" ></a></td>

Şimdi postbit 'ten postbit_legacy templates 'in en altina alttaki kodu ekliyoruz :


PHP Kodu:
$thanks_post

Yeni Template Olusturdan thanks_postbit ismiNde Bir teMplate oLusturuyoruz..

ve aLttaki Kodlari kopyaLiyoruz..


PHP Kodu:
$spacer_open <div style="padding:0px 0px $stylevar[cellpadding]px 0px"><table class="tborder" id="post$post[postid]" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center"><tr> <td class="thead" $scrolltothis> <div class="normal" style="float:$stylevar[right]"> &nbsp; </div> <div class="normal"> <!-- status icon and date --> <a name="post$post[postid]"><img class="inlineimg" src="$stylevar[imgdir_statusicon]/post_old.gif" alt="$post[statustitle]" border="0" /></a> $post[postdate], $post[posttime]</if> $post[firstnewinsert] <!-- / status icon and date --> </div> </td></tr><tr> <td class="alt2" style="padding:0px"> <!-- user info --> <table cellpadding="0" cellspacing="$stylevar[cellpadding]" border="0" width="100%"> <tr> <td nowrap="nowrap"> <div id="postmenu_$post[postid]"> $username </div> </td> <td width="100%">&nbsp;</td> <td valign="top" nowrap="nowrap"> <font class="smallfont"><div>$vbphrase[location_perm]: $vboptions[bbtitle]</font></div></td> </tr> </table> <!-- / user info --> </td></tr><tr> <td class="alt1"> <!-- message, attachments, sig --> <!-- icon and title --> <div class="smallfont"> <img class="inlineimg" src="images/icons/icon1.gif" alt="Post" border="0" /> <strong>$vbphrase[thanks_title]</strong> </div> <hr size="1" style="color:$stylevar[tborder_bgcolor]" /> <!-- / icon and title --> <!-- message --> <div>$liste_user $thank_phrase<br /><br /></div> <!-- / message --> </td></tr></table> </div> $spacer_close<!-- / post #$post[postid] -->

Bunlari Ekledikten Sonra Tekrar Yeni Template Ekleden thanks_postbit_legacy isminde bir template oLusturuyoruz..

Kodlarinada Asagidakilari Kopyalayin..


PHP Kodu:
$spacer_open <div style="padding:0px 0px $stylevar[cellpadding]px 0px"><table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="0" border="0" width="100%" align="center"><tr> <td class="thead" style="font-weight:normal" $scrolltothis> <!-- status icon and date --> <a name="post$post[postid]"><img class="inlineimg" src="$stylevar[imgdir_statusicon]/post_old.gif" alt="$post[statustitle]" border="0" /></a> $post[postdate], $post[posttime]</if> $post[firstnewinsert] <!-- / status icon and date --> </td> <td class="thead" style="font-weight:normal" align="$stylevar[right]"> &nbsp; </td></tr><tr valign="top"> <td class="alt2" width="175">$username <div class="smallfont"> &nbsp;<br /> <div>$vbphrase[location_perm]: $vboptions[bbtitle]</div> </div> </td> <td class="alt1"> <!-- icon and title --> <div class="smallfont"> <img class="inlineimg" src="$post[iconpath]" alt="images/icons/icon1.gif" border="0" /> <strong>$vbphrase[thanks_title]</strong> </div> <hr size="1" style="color:$stylevar[tborder_bgcolor]" /> <!-- / icon and title --> <!-- message --> <div>$liste_user $thank_phrase<br /><br /></div> </td></tr><tr> <td class="alt2"> &nbsp; </td> <td class="alt1" align="$stylevar[right]">&nbsp; </td></tr></table>$spacer_close<!-- / post #$post[postid] -->

En Son Olarakta thanks.gif'î FTP'den Template Klasörünüzdeki images/buttons klasorune ekLiyorsunuz bu kadar..
__________________
I walk this empty street on the boulevard of broken dreams where the city sleeps and I'm the only one and I walk alone!!
TiTaN çevrimdışı   Alıntı ile Cevapla
CevaplaCevapla


Konuyu Görüntüleyen Aktif Kullanıcılar: 1 (0 üye ve 1 misafir)
 

Yayınlama Kuralları
Yeni konu açamazsınız
Cevap gönderemezsiniz
Eklenti ekleyemezsiniz
Mesajlarınızı düzenleyemezsiniz

Kodlama is Açık
Smilies are Açık
[IMG] code is Açık
HTML code is Kapalı


Benzer Konular
Konu Konuyu Başlatan Forum Cevaplar Son Mesaj
sitenize şarkı ekleyin mystical_waynak Eskiler (Arşiv) 0 09-08-2007 11:33 PM
sitenize radio ekleyin Tilki_Andre Eskiler (Arşiv) 2 07-31-2007 03:14 AM
Sitenize oyun ekleyin!! TiTaN Eskiler (Arşiv) 0 06-25-2007 08:53 PM
sitenize pagerank değeri ekleyin TiTaN Eskiler (Arşiv) 0 06-25-2007 07:44 PM
Sitenize Haber Botu Ekleyin TiTaN Eskiler (Arşiv) 0 06-25-2007 07:42 PM

Forum saati GMT +3 olarak ayarlanmıştır. Şu an saat: 12:01 AM

Yazılım: vBulletin® - Sürüm: 3.8.11   Copyright ©2000 - 2025, vBulletin Solutions, Inc.