Page 1 of 1

Problem (and solution) for Phoca Gallery Slideshow Plugin

Posted: 26 Oct 2014, 19:58
by oidia
Hi,
I had a problem in Joomla 3.3.6 with the slideshow plugin (4.1.2). I was trying to display the slideshow plugin within the content of an iCagenda item. Actually no images were displayed even though everything was configured correctly. I found that the iCagenda component uses a view that was not handled in the slideshow plugin.

In "phocagalleryslideshow.php" I changed the line

Code: Select all

if ($view == 'article' || $view == 'featured' || $view == 'item' ||($view == 'category' && $layout == 'blog')) {
to

Code: Select all

if ($view == 'article' || $view == 'featured' || $view == 'list' || $view == 'item' ||($view == 'category' && $layout == 'blog')) {
After that it was working fine. Would be great if this fix finds its way into the official release.

Edit:
Basically it is a similar issue as discussed in this thread: viewtopic.php?f=9&t=19353 :-)

Best regards
Markus

Re: Problem (and solution) for Phoca Gallery Slideshow Plugi

Posted: 27 Oct 2014, 02:19
by Jan
Hi, Ok, added to feature request list.

Jan