View Single Post
  #2  
Old 2nd January 2015, 21:24
firefly007's Avatar
firefly007 firefly007 is offline
SUPPORT GURU
 
Join Date: Jun 2010
P2P
Posts: 721
Default
No adding cat are a little more complicated then that.

You need to edit /classes/config

and edit add what you want to

PHP Code:
$Categories 
And
PHP Code:
$CategoryIcons 
So it looks something like this

PHP Code:
$Categories = array('Music''Applications''E-Books''Audiobooks''E-Learning Videos''Movies|HD','TV|SD','TV|SD_x264','TV|HD_x264','GAME|PC','Movies|DVD','Movies|XVID','AUDIO|MP3','Comedy','Comics');
$CategoryIcons = array('music.png''tv264.png''apps.png''ebook.png''audiobook.png''elearning.png''movieshd.png''comedy.png''comics.png'); 
Then make sure you have the cat icons in the cat folder

You will need to edit /sections/upload/upload.php

and add the cats to the case statement

So it looks something like this

PHP Code:
switch ($UploadForm) {
    case 
'Music':
        
$TorrentForm->music_form($GenreTags);
        break;
        
    case 
'Audiobooks':
    case 
'Comedy':
        
$TorrentForm->audiobook_form();
        break;
    
    case 
'Applications':
    case 
'Comics':
    case 
'E-Books':
    case 
'E-Learning Videos':
    case 
'Movies|HD':
    case 
'Movies|SD':
    case 
'Movies|DVD':
    case 
'Movies|XVID':
    case 
'TV|SD':
    case 
'TV|SD_x264':
    case 
'TV|HD_x264':
    case 
'GAME|PC':
    case 
'AUTO|MP3':
        
$TorrentForm->simple_form($Properties['CategoryID']);
        break;
    default:
        
$TorrentForm->music_form($GenreTags);

__________________




Please Support Majority Report


You can contact me on Skype live:phesadent.elect but please let me know first.


If you are ever need me desperately then please email me at dan.oak44@gmail.com and I will contact u within a week.


Due to free time I'm able to help interested member's with their tracker.

Please Note!
Depending on your requests I will charge you for my assistance for Tracker installs and mods.
All my mods are custom and prices will very depending on the request.
I'm able to install any tracker and mods including themes.

Please PM me

Reply With Quote