Good, but inconsistent
-
Under Manage Galleries, you can scan for new images.
Under Music Box, you can’t.Creating a new playlist in Music Box there’s a choice of 2 players: Compact and Default. Guess which player is selected when you get there? Hint: it’s not the Default! Fixed it in music-box.php by adding an if-else using stripos():
foreach ( (array)$all_skins as $skin_file => $skin_data) { if (stripos($skin_data['Name'], 'Default') === false) { echo '<option value="'.dirname($skin_file).'">'.$skin_data['Name'].'</option>'."\n"; } else { echo '<option value="'.dirname($skin_file).'" selected >'.$skin_data['Name'].'</option>'."\n"; } }
Too bad it doesn’t interact with the Media Library. WP plays MP4’s, Grand Flash doesn’t. Guess incorporating the built-in video stuff wasn’t an option? ??
- The topic ‘Good, but inconsistent’ is closed to new replies.