Log in

View Full Version : Adding New Skin Style


Digital Jedi
02-11-2010, 08:45 PM
I'll admit PHP is not my thing. I'm trying to see if I can get the arcade to use a new arcade skin. I've created the new skin_FileName file and added the option to the Admin CP with no problem. The problem is now getting the edits in arcade.php. I tried an if elseif else condition. Doesn't seem to be working.

if( $this->arcade->settings['skin'] == 0 )
{
$this->html = $std->load_template('skin_Arcade');
}
elseif( $this->arcade->settings['skin'] == 1 )
{
$this->html = $std->load_template('skin_v3Arcade');
}
else {

$this->html = $std->load_template('skin_DJsArcade');
}


Not quite sure where to get the option to show in the User Settings menu, either. Obviously, I'm missing something.

--------------- Added 1265929629 at 1265929629 ---------------

Okay, apparently, it did work. I was just looking in the wrong places for the changes. I still will have to edit arcade.php if I want to change the rankings and category links area. Drats. I keep forgetting that.

redhawk89
02-12-2010, 12:52 AM
Wow! I hope this works!