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.
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> } ?>`
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.
Comments
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> } ?>`