Disablle slideshow for video album

Is it possible to disable the "view slideshow" option for a video album?

Comments

  • acrylian Administrator, Developer
    Technically an album is an album. You could use the custom field that each album has and create an if/else statement on your theme page to disable the slideshow for specific albums.
  • Bohdan Member
    I am not very familiar with php. Could you provide me with details? Thank you.
  • acrylian Administrator, Developer
    1. Enter for example "videoalbum" into the custom field of the album you want to disable the slideshow.
    2. Change your theme's album.php and image.php and put an if around the slideshowlink function like this
    `<?php if(getAlbumCustomData() != "videoalbum") { <slideshowlink> } ?>`
  • Bohdan Member
    I get an unexpected parse error "<" for that line of code.
  • acrylian Administrator, Developer
    Of course you need to replace `` with the correct function found in your theme...
  • Bohdan Member
    Sounds simple, but you assume that I know something about PHP. I am using the effervescence_plus theme in Zenphoto 1.2.4
  • acrylian Administrator, Developer
    If you haven't please read our theming tutorial before trying to modify a theme. In case you want to do further theme customizing you will also need at least to learn some php basics. I will surely understand that we really don't have the time to teach these basics here. There are better places.
Sign In or Register to comment.