Jamroom 5.3 Beta Kickoff
Announcements
Just had the same issue here. Found the solution, on a regular skin, eg elastic, go to:
ACP -> SKINS -> GLOBAL CONFIG -> PLAYERS
Select the player type from the dropdown list and save the changes. That will get the player to show.
I know your on a custom skin, so the location for making that option appear comes from the skins config.php file
for elastic thats:
/skins/jrElastic/config.php
and for elastic, its this option:
$_ptype = array(
'blue_monday' => 'Blue Monday Player',
'gray_overlay_player' => 'Gray Overlay Player',
'midnight_player' => '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' => 30,
'section' => 'Players'
);
jrCore_register_setting('jrElastic', $_tmp);
So if you add that option to your skins config.php file and change the bits that read 'jrElastic' to your skins name, clear the caches you should be good to go again.