Strumelia:
michael:
It was the config.php file. so nothing you need to do. no templates were effected.
Ok, but now there's another Ningja skin update.
The two updates since yesterday were:
Version 1.1.6
-Fix: Fixed profile_item files skin config variables.
Version 1.1.5
-Fix: Fixed skin config where players were not being set to the correct type.
Does this mean these updates to "config.php" file have automatically been applied to my CUSTOM/active skin? I'm not understanding how that works...shouldn't I be doing something to get my custom skin updated with these two fixes? Thanks for explaining to me...
The profile_item_index.tpl, profile_item_list.tpl, profile_item_detail.tpl and config.php files were the files modified for both of those updates.
In your profile_item_*.tpl files, make sure that your version has the correct skin name in the if statement... ie.
{if $profile_disable_sidebar != 1 && strpos($current_url, $_conf.jrNingja_forum_profile) !== 0}
has your skin name and not something else.
The config.php file had the wrong values for the player settings. It is at the bottom of the file. You should have this for the Player Type selection:
$_ptype = array(
'blue_monday' => 'Blue Monday Player',
'gray_overlay_player' => 'Gray Overlay Player',
'player_dark' => 'Midnight Player',
'black_overlay_player' => 'Black Overlay Player',
);
$_tmp = array(
'name' => 'player_type',
'label' => 'Player Type',
'help' => 'Select the type of player you want to use on your site.Original = Blue Monday New = New Light Player',
'type' => 'select',
'options' => $_ptype,
'default' => 'black_overlay_player',
'order' => 60,
'section' => 'Players'
);
jrCore_register_setting('YOURSKINNAME', $_tmp);
make sure to change YOURSKINNAME to the name of the skin your using.
Hope this helps!
--
Douglas Hackney
Jamroom Team - Designer/Developer/Support
FAQ-Docs-Help Videos