Hi guys,
I'm trying to enable the slideshow in my gallery.
I have added this in the <head>:
<?php printSlideShowJS(); ?>
This where I want it to display:
<?php $albumobj = new Album($_zp_gallery, "ferrari"); printSlideShow(true,false,$albumobj, "", 600,400); ?>
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?
Comments
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.
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
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.
$albumobject = new Album($galleryobject,"");
So does that mean the line of code now becomes;
<?php $albumobject = new Album($galleryobject,""); printSlideShow(true,false,$albumobject, "", 600,400); ?>
You should read the zenphoto object model docs and also the functions guide.
The code in your first post is basically correct.
Please explain what you want to do and where.
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.