In display.playing.php where it says "From" and lists the album name, if a person clicks on this link I'd like to show the track listing of that album instead of taking me to Amazon to purchase.
My current line reads:
(!empty($user->lang['CODE'])) ? $user->lang['CODE'] : ucwords(strtolower(str_replace('_', ' ', 'CODE'))):
<?php if(!empty($currentSong->album)) : ?><br />from <span id="currently-playing-album"> <?php echo $currentSong->album; ?></span> <?php endif; ?>
I know I need some HTML in there and I've cross-referenced the original display.playing.php file but it doesn't give me much to go on.
Thanks!
Dan