Bravo List

Bravo List (http://www.bvlist.com/index.php)
-   Torrent Trader (http://www.bvlist.com/forumdisplay.php?f=29)
-   -   Make TT look like TBdev? (http://www.bvlist.com/showthread.php?t=2471)

thereal 19th April 2009 16:14

Make TT look like TBdev?
 
Hi, how can make torrent trader look like TBdev , the blue edition,?

hack346 19th April 2009 20:28

Quote:

Originally Posted by thereal (Post 10941)
Hi, how can make torrent trader look like TBdev , the blue edition,?

simple...import your user from tt in tbdev blue edition

P.S. how look this version?

thereal 19th April 2009 21:47

Quote:

Originally Posted by hack346 (Post 10946)
simple...import your user from tt in tbdev blue edition

P.S. how look this version?

I have Torrent Trader 2.05, the thing is Tbdev doesn't work form me, but TT is good so I was wondering if there's a theme or something that looks like Tbdev,? I think I saw a redish theme,?

Krypto 19th April 2009 21:56

2 Attachment(s)
By mOObile

Fully working for TorrentTrader FINAL and BETA 4


Just overwrite the DEFAULT folder if using FINAL

If you are using BETA 4 please use the modified functions.php also.


Content of the zip:
- Modded Functions.php for BETA 4 ONLY
- Theme Electrik
- Html file for Installation if you can't use my functions.php (hacks installed before)

Attachment 1472

thereal 20th April 2009 16:57

Quote:

Originally Posted by Krypto (Post 10949)
By mOObile

Fully working for TorrentTrader FINAL and BETA 4


Just overwrite the DEFAULT folder if using FINAL

If you are using BETA 4 please use the modified functions.php also.


Content of the zip:
- Modded Functions.php for BETA 4 ONLY
- Theme Electrik
- Html file for Installation if you can't use my functions.php (hacks installed before)


THANKS!!!
How can I make so that the login box only is visable when you're not logged in, like tbdev?

raefor 20th April 2009 19:15

Quote:

Originally Posted by thereal (Post 10958)
THANKS!!!
How can I make so that the login box only is visable when you're not logged in, like tbdev?

you can try this

first find this code in index :

PHP Code:

if ($SHOUTBOX)
{
begin_frame("" SHOUTBOX ""center);
echo 
'<IFRAME name="shout_frame" src="'.$SITEURL.'/ttshout.php" frameborder="0" marginheight="0" marginwidth="0" width="95%" height="210" scrolling="no" align="middle"></IFRAME>';
end_frame();


before the code add :

PHP Code:

if ($LOGGEDINONLY){
    if (!
$CURUSER){
 echo 
"<BR><BR><b><CENTER>write what ever you wantdisable - need to login first</CENTER><BR><BR>";
    }else{ 

after
PHP Code:

end_frame(); } 

add this :
PHP Code:

}


sorry no box to put code in

thereal 20th April 2009 19:25

but how do I disable the torrenttable, I only want it to show the login box not both the login box and the torrenttable?
EDIT: FIXED

raefor 22nd April 2009 11:01

Quote:

Originally Posted by thereal (Post 10958)
THANKS!!!
How can I make so that the login box only is visable when you're not logged in, like tbdev?

replace On Index.php And Account-Signup.php

PHP Code:

require_once("backend/functions.php");
dbconn(); 


with

PHP Code:

require_once("backend/functions.php");
$site_config['RIGHTNAV'] = false;
$site_config['LEFTNAV'] = false;
dbconn(); 



All times are GMT +2. The time now is 04:04.

Powered by vBulletin® Version 3.8.11 Beta 3
Copyright ©2000 - 2024, vBulletin Solutions Inc.