Hi guys,
I'm trying to enable the slideshow in my gallery.
I have added this in the :
This where I want it to display:
And added the 3 slideshow files to my themes folder.
However, the slideshow doesn't want to display.
Anyway, not that it works, but I don't want the ferrari folder's images displayed. I'd like the album of the current page to be displayed.
Any ideas?
I don't understand. If you don't want to use the "ferrari" album why do you set it specifically?
The slideshow without a special setting uses the current album automatically by default. You also don't need to add the printSlideshowJS to any theme page if you use that. That is only needed if you wish to use the slideshow specifally independent of the context.
Hi acrylian,
If I have the quotation marks without anything inside, I get this;
Zenphoto encountered an error
MySQL Query ( SELECT * FROM zp_images WHERE albumid= ) failed. MySQL returned the error You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 1
Please look at how standard themes do it. The slideshow is always directed either to the slideshow page or displayed via a colorbox.
If you want to use the slideshow directly on the album.hpp theme page you need to use the global object variable of the current album. Please see the object model tutorial then.
This page here is the one I'm referring to: http://www.zenphoto.org/news/zenphotos-object-model-framework
Quote:$albumobject = new Album($galleryobject,"");
So does that mean the line of code now becomes;
That code is completly wrong.
First, did you set up $galleryobject? If not that is empty. Generally the gallery object is availble on theme pages already.
Secondly. $albumobject = new Album($galleryobject,"") this does not create any album because you don'T pass an album name... The current album has also a global var that is setup on album.php and image.php.
Btw, you didn't answer my question above. For the standard slideshow usage see the standard themes. If you want to call it directly on a theme page you probably really should re-read the object model tutorial.