[Plugin: WP-Spotify] Widget Bug – (SOLUTION INCLUDED)
-
Could not find any contact information for the developer so I hope this will be noticed.
In the class wp-spotify.class.php the line that posts the song string to the widget, it incorrectly sets the song URI to the album URI by selecting the wrong table:
echo "\t<li><a href=\"spotify:track:{$Song['trackAlbumUri']}\"><div></div>{$Song['trackArtistName']} - {$Song['trackTrackTitle']}</a></li>\n";
should be:
echo "\t<li><a href=\"spotify:track:{$Song['trackTrackUri']}\"><div></div>{$Song['trackArtistName']} - {$Song['trackTrackTitle']}</a></li>\n";
Fixed it for me, anyways.Thanks for a great widget, I’m loving it ??
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘[Plugin: WP-Spotify] Widget Bug – (SOLUTION INCLUDED)’ is closed to new replies.