View Single Post
  #11  
Old 4th March 2012, 16:49
artifici artifici is offline
Member
 
Join Date: Jan 2011
P2P
Posts: 9
Default
first i must succeed to install it but from what i seen you need to go to line 660
PHP Code:
<td align="center">'.$torrent_download_link.'</td
and after it add something like
PHP Code:
<td align="center">'.$torrents['forum_link'].'</td
for that to work you will need to also modify the torrents database table with something like
Code:
ALTER TABLE `torrents` ADD `forum_link` VARCHAR(80)
forum_link is just an example, you can define it how you wish
but your torrents table header will need some adjustments too
go to line 514
PHP Code:
<td class="thead" align="center" style="padding: 10px 0 0 0;"><img src="'.$BASEURL.'/'.$pic_base_url.'/down1.gif" border="0" class="inlineimg"></td
and after add
PHP Code:
<td class="thead" align="center" style="padding: 10px 0 0 0;"><img src="'.$BASEURL.'/'.$pic_base_url.'/down1.gif" border="0" class="inlineimg"></td
this will just duplicate it but it will keep the columns number equal
so the best thing is to change down1.gif with your image for forum links(keep the same size)

i didn't even install ts so this is just from my observation
if you use this you will need to modify also the sticky torrents table and probably the css to display correctly
Reply With Quote