Quote:
|
Originally Posted by Degolas
Awesome work !
Next step for me -> Remove the tradeskill lol
|
Go into '/themes/default/theme.php' or '/themes/panel/theme.php' and open them with a standard text editor. At this point there are several things you could do, but I will simply give you the easiest one:
PHP Code:
//Look for
<?php
//After that, add
$player['artisan'] = "nullified";
"nullified" can be changed to a number of things. I am simply adding that as a possible choice. If you change it to a regular text value (like ------ or whatever) make sure it is contained in quotes. You could also try replacing it with another data value. For instance if you wanted your personal status to show up in place of the artisan level, you could do this:
$player['artisan] = $player['status']." Status";
(this means your status would be listed twice on the advanced image, so you might want to put a // in front of the line for $player['status'] which can be found halfway down the advanced section of the theme.) You can get creative from here...
As always, if you need help, PM or Email me, and I will help you as best I can, or possibly even customize the theme for you. Would be better to tell you how though, because then you learn how to do it...