I realized an error with the Phoca Gallery Slideshow Plugin if you want to have more than one picture in one article: That doesn't work with the current version 1.0.0 beta, only the first picture is shown, for the others, the plugin code is displayed.
I searched for the reason within plugin file phocagalleryslideshow.php and found two bugs:
- The first one is the use of the counter variable $i within two loops (line 43 and 86). You have to use different variables for the loops, so I changed $i to $j in lines 43 (all 3 occurences) and 52 (only one occurence).
- The "return" call at the end of the file (line 121) must be moved one level higher because it should not be called before all of the pictures have been processed by the script. So you have to switch lines 121 and 122.
Best regards,
Matze