I just figured this out and thought I would share the info in case someone else wanted to do it also.
frontend/blocks.php
Find
$display->link($child, $tName, $descName, "jz_track_table_songs_href");
Above that line add
if ($multiArtist) { //check if soundtrack, various artist album
$artistName = $metaData['artist']; //get artist id tag from song
$artistName2 = substr($artistName, 0, 20); //shorten display of artist name
echo "<acronym title=\"$artistName\">$artistName2</acronym> - "; // display shortened name and add hover for full name display
}
